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

chore: bump version to 9.0.0-dev #890

Merged
merged 1 commit into from
Jan 6, 2020
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
8.2.0-dev
9.0.0-dev
2 changes: 1 addition & 1 deletion bin/templates/cordova/version
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
*/

// Coho updates this line:
var VERSION = '8.2.0-dev';
var VERSION = '9.0.0-dev';

module.exports.version = VERSION;

Expand Down
2 changes: 1 addition & 1 deletion bin/templates/project/assets/www/cordova.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
under the License.
*/
;(function() {
var PLATFORM_VERSION_BUILD_LABEL = '8.2.0-dev';
var PLATFORM_VERSION_BUILD_LABEL = '9.0.0-dev';
// file: src/scripts/require.js
var require;
var define;
Expand Down
6 changes: 3 additions & 3 deletions framework/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ apply plugin: 'com.github.dcendents.android-maven'
apply plugin: 'com.jfrog.bintray'

group = 'org.apache.cordova'
version = '8.2.0-dev'
version = '9.0.0-dev'

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

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

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cordova-android",
"version": "8.2.0-dev",
"version": "9.0.0-dev",
"description": "cordova-android release",
"bin": {
"create": "bin/create"
Expand Down