diff --git a/RELEASENOTES.md b/RELEASENOTES.md index 2d1b1887..489f8ab2 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,6 +20,25 @@ --> ## Release Notes for Cordova (Android) +### 10.1.0 (Aug 13, 2021) + +**Features:** + +* [GH-1213](https://github.com/apache/cordova-android/pull/1213) feat: unify `create` default values & stop project name transform +* [GH-1306](https://github.com/apache/cordova-android/pull/1306) feat: bump `ANDROIDX_APP_COMPAT@1.3.1` +* [GH-1303](https://github.com/apache/cordova-android/pull/1303) feat: bump `Google Services Gradle Plugin@4.3.8` +* [GH-1302](https://github.com/apache/cordova-android/pull/1302) feat: bump `kotlin@1.5.21` +* [GH-1298](https://github.com/apache/cordova-android/pull/1298) feat: support `http` w/ `content` `src` fix + +**Fixes:** + +* [GH-1214](https://github.com/apache/cordova-android/pull/1214) fix: display project name in Android Studio +* [GH-1300](https://github.com/apache/cordova-android/pull/1300) fix: fall back to project root `repositories.gradle` + +**Docs:** + +* [GH-1308](https://github.com/apache/cordova-android/pull/1308) doc: update `README` about development & testing + ### 10.0.1 (Jul 27, 2021) **Fixes:** diff --git a/framework/src/org/apache/cordova/CordovaWebView.java b/framework/src/org/apache/cordova/CordovaWebView.java index 15bd25e2..bfaba0cd 100644 --- a/framework/src/org/apache/cordova/CordovaWebView.java +++ b/framework/src/org/apache/cordova/CordovaWebView.java @@ -31,7 +31,7 @@ import android.webkit.WebChromeClient.CustomViewCallback; * are not expected to implement it. */ public interface CordovaWebView { - public static final String CORDOVA_VERSION = "10.1.0-dev"; + public static final String CORDOVA_VERSION = "10.1.0"; void init(CordovaInterface cordova, List pluginEntries, CordovaPreferences preferences); diff --git a/package-lock.json b/package-lock.json index ced3a004..d69283b8 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "cordova-android", - "version": "10.1.0-dev", + "version": "10.1.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 988e0cf6..d595af68 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-android", - "version": "10.1.0-dev", + "version": "10.1.0", "description": "cordova-android release", "main": "lib/Api.js", "repository": "github:apache/cordova-android",