Set VERSION to 9.0.0 (via coho)

This commit is contained in:
Erisu 2020-06-23 18:33:21 +09:00
parent 8e53e2aa56
commit cdcb4ddcd9
No known key found for this signature in database
GPG Key ID: 2E5FF17FB26AF7F2
4 changed files with 6 additions and 6 deletions

View File

@ -1 +1 @@
9.0.0-dev 9.0.0

View File

@ -24,7 +24,7 @@
* This workflow would not have the `package.json` file. * This workflow would not have the `package.json` file.
*/ */
// Coho updates this line // Coho updates this line
const VERSION = '9.0.0-dev'; const VERSION = '9.0.0';
var path = require('path'); var path = require('path');

View File

@ -49,7 +49,7 @@ apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray' apply plugin: 'com.jfrog.bintray'
group = 'org.apache.cordova' group = 'org.apache.cordova'
version = '9.0.0-dev' version = '9.0.0'
android { android {
compileSdkVersion cdvCompileSdkVersion compileSdkVersion cdvCompileSdkVersion
@ -140,9 +140,9 @@ bintray {
licenses = ['Apache-2.0'] licenses = ['Apache-2.0']
labels = ['android', 'cordova', 'phonegap'] labels = ['android', 'cordova', 'phonegap']
version { version {
name = '9.0.0-dev' name = '9.0.0'
released = new Date() released = new Date()
vcsTag = '9.0.0-dev' vcsTag = '9.0.0'
} }
} }
} }

View File

@ -31,7 +31,7 @@ import android.webkit.WebChromeClient.CustomViewCallback;
* are not expected to implement it. * are not expected to implement it.
*/ */
public interface CordovaWebView { 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<PluginEntry> pluginEntries, CordovaPreferences preferences); void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);