Compare commits

...

2 Commits
8.0.x ... 6.4.0

Author SHA1 Message Date
Joe Bowser
7a27ee4f69 Set VERSION to 6.4.0 (via coho) 2017-11-06 11:44:20 -08:00
Joe Bowser
cc13413007 Update JS snapshot to version 6.4.0 (via coho) 2017-11-06 11:44:19 -08:00
5 changed files with 328 additions and 349 deletions

View File

@@ -1 +1 @@
6.4.0-dev
6.4.0

View File

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

File diff suppressed because it is too large Load Diff

View File

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

View File

@@ -31,7 +31,7 @@ import android.webkit.WebChromeClient.CustomViewCallback;
* are not expected to implement it.
*/
public interface CordovaWebView {
public static final String CORDOVA_VERSION = "6.4.0-dev";
public static final String CORDOVA_VERSION = "6.4.0";
void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);