Skip to content

Commit 2143045

Browse files
committed
release(android-v13.0.0): updated version and RELEASENOTES.md
1 parent 3c5df42 commit 2143045

File tree

4 files changed

+36
-4
lines changed

4 files changed

+36
-4
lines changed

RELEASENOTES.md

+32
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,38 @@
2020
-->
2121
## Release Notes for Cordova (Android)
2222

23+
### 13.0.0 (May 15, 2024)
24+
25+
**Breaking Changes:**
26+
27+
* [GH-1678](https://github.com/apache/cordova-android/pull/1678) feat!: API 34 Support
28+
* [GH-1543](https://github.com/apache/cordova-android/pull/1543) feat!: bump `kotlin@1.9.24` & drop `kotlin-android-extensions` when kotlin `>=1.8.0`
29+
30+
**Features:**
31+
32+
* [GH-1700](https://github.com/apache/cordova-android/pull/1700) feat(splash): Support `SplashScreenBackgroundColor` preference
33+
* [GH-1609](https://github.com/apache/cordova-android/pull/1609) feat: add camera intent with file input capture
34+
* [GH-1696](https://github.com/apache/cordova-android/pull/1696) feat: Add `ResolveServiceWorkerRequests` preference
35+
36+
**Chores, Dependencies & CI:**
37+
38+
* [GH-1677](https://github.com/apache/cordova-android/pull/1677) chore(deps-dev): bump `@babel/traverse` from `7.22.10` to `7.23.2`
39+
* [GH-1713](https://github.com/apache/cordova-android/pull/1713) dep: bump npm dependencies 20240515
40+
* `semver@7.6.2`
41+
* `rewire@7.0.0`
42+
* `nopt@7.2.1`
43+
* `jasmine@5.1.0`
44+
* `fs-extra@11.2.0`
45+
* `fast-glob@3.3.2`
46+
* `dedent@1.5.3`
47+
* `@cordova/eslint-config@5.1.0`
48+
* `which@4.0.0`
49+
* `properties-parser@0.6.0`
50+
* `android-versions@2.0.0`
51+
* [GH-1711](https://github.com/apache/cordova-android/pull/1711) ci: Set up CodeQL analysis w/ fixes
52+
* [GH-1687](https://github.com/apache/cordova-android/pull/1687) ci(release-audit): add license header and dependency checker
53+
* [GH-1703](https://github.com/apache/cordova-android/pull/1703) ci: update `codecov@v4` w/ token
54+
2355
### 12.0.1 (Aug 23, 2023)
2456

2557
* [GH-1632](https://github.com/apache/cordova-android/pull/1632) fix(android): `monochrome` checks

framework/src/org/apache/cordova/CordovaWebView.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ Licensed to the Apache Software Foundation (ASF) under one
3131
* are not expected to implement it.
3232
*/
3333
public interface CordovaWebView {
34-
public static final String CORDOVA_VERSION = "13.0.0-dev";
34+
public static final String CORDOVA_VERSION = "13.0.0";
3535

3636
void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);
3737

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "cordova-android",
3-
"version": "13.0.0-dev",
3+
"version": "13.0.0",
44
"description": "cordova-android release",
55
"types": "./types/index.d.ts",
66
"main": "lib/Api.js",

0 commit comments

Comments
 (0)