Set VERSION to 7.1.1 (via coho)

This commit is contained in:
Christopher J. Brody 2018-07-11 21:36:34 -04:00
parent cc87a9da1e
commit 7a97fd7e34
4 changed files with 6 additions and 6 deletions

View File

@ -1 +1 @@
7.1.1-dev
7.1.1

View File

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

View File

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

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 = "7.1.1-dev";
public static final String CORDOVA_VERSION = "7.1.1";
void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);