diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2019-12-12 14:29:51 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2019-12-12 14:45:45 +0100 |
| commit | bd31ed8db6be066dc39011e8d5089bf024c12dc7 (patch) | |
| tree | 518a785343f68e980f1359f5e85dbc9ec78f9acf | |
| parent | 1fa17681a54a128682574a7215d1ee7895df2818 (diff) | |
| download | mullvadvpn-bd31ed8db6be066dc39011e8d5089bf024c12dc7.tar.xz mullvadvpn-bd31ed8db6be066dc39011e8d5089bf024c12dc7.zip | |
Updating version in package files
| -rw-r--r-- | Cargo.lock | 12 | ||||
| -rw-r--r-- | android/build.gradle | 4 | ||||
| -rw-r--r-- | dist-assets/windows/version.h | 2 | ||||
| -rw-r--r-- | gui/package-lock.json | 2 | ||||
| -rw-r--r-- | gui/package.json | 2 | ||||
| -rw-r--r-- | mullvad-cli/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-daemon/Cargo.toml | 2 | ||||
| -rw-r--r-- | mullvad-problem-report/Cargo.toml | 2 | ||||
| -rw-r--r-- | talpid-openvpn-plugin/Cargo.toml | 2 |
9 files changed, 15 insertions, 15 deletions
diff --git a/Cargo.lock b/Cargo.lock index 88239a7b44..e1641f7852 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1226,7 +1226,7 @@ dependencies = [ [[package]] name = "mullvad-cli" -version = "2019.10.0-beta2" +version = "2019.10.0" dependencies = [ "base64 0.10.1 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1247,7 +1247,7 @@ dependencies = [ [[package]] name = "mullvad-daemon" -version = "2019.10.0-beta2" +version = "2019.10.0" dependencies = [ "android_logger 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "chrono 0.4.9 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1321,9 +1321,9 @@ dependencies = [ "lazy_static 1.4.0 (registry+https://github.com/rust-lang/crates.io-index)", "log 0.4.8 (registry+https://github.com/rust-lang/crates.io-index)", "log-panics 2.0.0 (registry+https://github.com/rust-lang/crates.io-index)", - "mullvad-daemon 2019.10.0-beta2", + "mullvad-daemon 2019.10.0", "mullvad-paths 0.1.0", - "mullvad-problem-report 2019.10.0-beta2", + "mullvad-problem-report 2019.10.0", "mullvad-types 0.1.0", "talpid-core 0.1.0", "talpid-types 0.1.0", @@ -1340,7 +1340,7 @@ dependencies = [ [[package]] name = "mullvad-problem-report" -version = "2019.10.0-beta2" +version = "2019.10.0" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "dirs 2.0.2 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2493,7 +2493,7 @@ dependencies = [ [[package]] name = "talpid-openvpn-plugin" -version = "2019.10.0-beta2" +version = "2019.10.0" dependencies = [ "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", "err-derive 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/android/build.gradle b/android/build.gradle index 58509b005b..41cc002ae9 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -23,8 +23,8 @@ android { applicationId "net.mullvad.mullvadvpn" minSdkVersion 19 targetSdkVersion 28 - versionCode 19100002 - versionName "2019.10-beta2" + versionCode 19100099 + versionName "2019.10" } if (keystorePropertiesFile.exists()) { diff --git a/dist-assets/windows/version.h b/dist-assets/windows/version.h index 8865fcbc5f..1f1be4cdd9 100644 --- a/dist-assets/windows/version.h +++ b/dist-assets/windows/version.h @@ -1,4 +1,4 @@ #define MAJOR_VERSION 2019 #define MINOR_VERSION 10 #define PATCH_VERSION 0 -#define PRODUCT_VERSION "2019.10-beta2" +#define PRODUCT_VERSION "2019.10" diff --git a/gui/package-lock.json b/gui/package-lock.json index f8b20e6aae..a59d4b40bf 100644 --- a/gui/package-lock.json +++ b/gui/package-lock.json @@ -1,6 +1,6 @@ { "name": "mullvad-vpn", - "version": "2019.10.0-beta2", + "version": "2019.10.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/gui/package.json b/gui/package.json index b602772401..11b37ba0d9 100644 --- a/gui/package.json +++ b/gui/package.json @@ -1,6 +1,6 @@ { "name": "mullvad-vpn", - "version": "2019.10.0-beta2", + "version": "2019.10.0", "productName": "Mullvad VPN", "private": true, "description": "Mullvad VPN client", diff --git a/mullvad-cli/Cargo.toml b/mullvad-cli/Cargo.toml index ec068f64c1..eb93bbdb6a 100644 --- a/mullvad-cli/Cargo.toml +++ b/mullvad-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mullvad-cli" -version = "2019.10.0-beta2" +version = "2019.10.0" authors = [ "Mullvad VPN <admin@mullvad.net>", "Andrej Mihajlov <and@mullvad.net>", diff --git a/mullvad-daemon/Cargo.toml b/mullvad-daemon/Cargo.toml index e01f93aa7f..fec93c0a79 100644 --- a/mullvad-daemon/Cargo.toml +++ b/mullvad-daemon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mullvad-daemon" -version = "2019.10.0-beta2" +version = "2019.10.0" authors = [ "Mullvad VPN <admin@mullvad.net>", "Andrej Mihajlov <and@mullvad.net>", diff --git a/mullvad-problem-report/Cargo.toml b/mullvad-problem-report/Cargo.toml index 2fd440017e..7a9712dbbc 100644 --- a/mullvad-problem-report/Cargo.toml +++ b/mullvad-problem-report/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mullvad-problem-report" -version = "2019.10.0-beta2" +version = "2019.10.0" authors = [ "Mullvad VPN <admin@mullvad.net>", "Andrej Mihajlov <and@mullvad.net>", diff --git a/talpid-openvpn-plugin/Cargo.toml b/talpid-openvpn-plugin/Cargo.toml index f28f672f56..821bff3b56 100644 --- a/talpid-openvpn-plugin/Cargo.toml +++ b/talpid-openvpn-plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "talpid-openvpn-plugin" -version = "2019.10.0-beta2" +version = "2019.10.0" authors = [ "Mullvad VPN <admin@mullvad.net>", "Andrej Mihajlov <and@mullvad.net>", |
