Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

CB-14240 mark 7.1.2-dev on 7.1.x #470

Merged
merged 2 commits into from Aug 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
7.1.1
7.1.2-dev
2 changes: 1 addition & 1 deletion bin/templates/cordova/version
Expand Up @@ -20,7 +20,7 @@
*/

// Coho updates this line:
var VERSION = "7.1.1";
var VERSION = "7.1.2-dev";

module.exports.version = VERSION;

Expand Down
2 changes: 1 addition & 1 deletion bin/templates/project/assets/www/cordova.js
Expand Up @@ -19,7 +19,7 @@
under the License.
*/
;(function() {
var PLATFORM_VERSION_BUILD_LABEL = '7.1.1';
var PLATFORM_VERSION_BUILD_LABEL = '7.1.2-dev';
// file: src/scripts/require.js

/* jshint -W079 */
Expand Down
6 changes: 3 additions & 3 deletions framework/build.gradle
Expand Up @@ -42,7 +42,7 @@ apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

group = 'org.apache.cordova'
version = '7.1.1'
version = '7.1.2-dev'

android {
compileSdkVersion cdvCompileSdkVersion
Expand Down Expand Up @@ -129,9 +129,9 @@ bintray {
licenses = ['Apache-2.0']
labels = ['android', 'cordova', 'phonegap']
version {
name = '7.1.1'
name = '7.1.2-dev'
released = new Date()
vcsTag = '7.1.1'
vcsTag = '7.1.2-dev'
}
}
}
2 changes: 1 addition & 1 deletion framework/src/org/apache/cordova/CordovaWebView.java
Expand Up @@ -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 = "7.1.1";
public static final String CORDOVA_VERSION = "7.1.2-dev";

void init(CordovaInterface cordova, List<PluginEntry> pluginEntries, CordovaPreferences preferences);

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "cordova-android",
"version": "7.1.1",
"version": "7.1.2-dev",
"description": "cordova-android release",
"bin": {
"create": "bin/create"
Expand Down