diff --git a/RELEASENOTES.md b/RELEASENOTES.md index e0a95d560a..2d1b1887d2 100644 --- a/RELEASENOTES.md +++ b/RELEASENOTES.md @@ -20,6 +20,20 @@ --> ## Release Notes for Cordova (Android) +### 10.0.1 (Jul 27, 2021) + +**Fixes:** + +* [GH-1295](https://github.com/apache/cordova-android/pull/1295) fix: `maven-publish` setup +* [GH-1293](https://github.com/apache/cordova-android/pull/1293) fix: `gradle` build tools config +* [GH-1294](https://github.com/apache/cordova-android/pull/1294) fix: automatic latest build tools finding +* [GH-1287](https://github.com/apache/cordova-android/pull/1287) fix: Google Services Gradle Plugin version check failure + +**Chores:** + +* [GH-1291](https://github.com/apache/cordova-android/pull/1291) chore: add missing release notes +* [GH-1286](https://github.com/apache/cordova-android/pull/1286) chore: update `README` requirements + ### 10.0.0 (Jul 17, 2021) **Breaking:** diff --git a/framework/src/org/apache/cordova/CordovaWebView.java b/framework/src/org/apache/cordova/CordovaWebView.java index b99badbe37..68604874ef 100644 --- a/framework/src/org/apache/cordova/CordovaWebView.java +++ b/framework/src/org/apache/cordova/CordovaWebView.java @@ -31,7 +31,7 @@ Licensed to the Apache Software Foundation (ASF) under one * are not expected to implement it. */ public interface CordovaWebView { - public static final String CORDOVA_VERSION = "10.0.1-dev"; + public static final String CORDOVA_VERSION = "10.0.1"; void init(CordovaInterface cordova, List pluginEntries, CordovaPreferences preferences); diff --git a/package-lock.json b/package-lock.json index b32ed516ef..fb719bbdc7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "cordova-android", - "version": "10.0.1-dev", + "version": "10.0.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 26a26ce946..1469eeab82 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-android", - "version": "10.0.1-dev", + "version": "10.0.1", "description": "cordova-android release", "main": "lib/Api.js", "repository": "github:apache/cordova-android",