Set VERSION to 8.0.0 (via coho)

This commit is contained in:
エリス 2019-02-13 15:22:06 +09:00
parent f48a5fc02a
commit d5069b1030
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 @@
8.0.0-dev 8.0.0

View File

@ -20,7 +20,7 @@
*/ */
// Coho updates this line: // Coho updates this line:
var VERSION = "8.0.0-dev"; var VERSION = "8.0.0";
module.exports.version = VERSION; module.exports.version = VERSION;

View File

@ -42,7 +42,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 = '8.0.0-dev' version = '8.0.0'
android { android {
compileSdkVersion cdvCompileSdkVersion compileSdkVersion cdvCompileSdkVersion
@ -128,9 +128,9 @@ bintray {
licenses = ['Apache-2.0'] licenses = ['Apache-2.0']
labels = ['android', 'cordova', 'phonegap'] labels = ['android', 'cordova', 'phonegap']
version { version {
name = '8.0.0-dev' name = '8.0.0'
released = new Date() released = new Date()
vcsTag = '8.0.0-dev' vcsTag = '8.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 = "8.0.0-dev"; public static final String CORDOVA_VERSION = "8.0.0";
void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences); void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);