From cdcb4ddcd9b9b42facea7460f2f6309a4ac8d6fc Mon Sep 17 00:00:00 2001 From: Erisu Date: Tue, 23 Jun 2020 18:33:21 +0900 Subject: [PATCH] Set VERSION to 9.0.0 (via coho) --- VERSION | 2 +- bin/templates/cordova/Api.js | 2 +- framework/build.gradle | 6 +++--- framework/src/org/apache/cordova/CordovaWebView.java | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/VERSION b/VERSION index f6c8661fed..f7ee06693c 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -9.0.0-dev +9.0.0 diff --git a/bin/templates/cordova/Api.js b/bin/templates/cordova/Api.js index 6de476ac1b..91690a63e8 100644 --- a/bin/templates/cordova/Api.js +++ b/bin/templates/cordova/Api.js @@ -24,7 +24,7 @@ * This workflow would not have the `package.json` file. */ // Coho updates this line -const VERSION = '9.0.0-dev'; +const VERSION = '9.0.0'; var path = require('path'); diff --git a/framework/build.gradle b/framework/build.gradle index 1541251c82..d7e0b1f728 100644 --- a/framework/build.gradle +++ b/framework/build.gradle @@ -49,7 +49,7 @@ apply plugin: 'com.github.dcendents.android-maven' apply plugin: 'com.jfrog.bintray' group = 'org.apache.cordova' -version = '9.0.0-dev' +version = '9.0.0' android { compileSdkVersion cdvCompileSdkVersion @@ -140,9 +140,9 @@ bintray { licenses = ['Apache-2.0'] labels = ['android', 'cordova', 'phonegap'] version { - name = '9.0.0-dev' + name = '9.0.0' released = new Date() - vcsTag = '9.0.0-dev' + vcsTag = '9.0.0' } } } diff --git a/framework/src/org/apache/cordova/CordovaWebView.java b/framework/src/org/apache/cordova/CordovaWebView.java index 507cb7e2bc..7ee8d24709 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 = "9.0.0-dev"; + public static final String CORDOVA_VERSION = "9.0.0"; void init(CordovaInterface cordova, List pluginEntries, CordovaPreferences preferences);