diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2020-04-08 13:30:46 +0200 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2020-04-08 13:30:46 +0200 |
| commit | ccf831c9c1434fa1ddb8e9d25800e83454bb2f86 (patch) | |
| tree | af6b02f7e6bebb2cf08cb45fd809abf977cc47e1 | |
| parent | 59ca9c5fe30b090de2a0f354f749d79de638bc30 (diff) | |
| download | mullvadvpn-ccf831c9c1434fa1ddb8e9d25800e83454bb2f86.tar.xz mullvadvpn-ccf831c9c1434fa1ddb8e9d25800e83454bb2f86.zip | |
Updating version in package files2020.4-beta2
| -rw-r--r-- | Cargo.lock | 14 | ||||
| -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, 16 insertions, 16 deletions
diff --git a/Cargo.lock b/Cargo.lock index 82f41fafa2..5c00da6274 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1227,7 +1227,7 @@ dependencies = [ [[package]] name = "mullvad-cli" -version = "2020.4.0-beta1" +version = "2020.4.0-beta2" 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)", @@ -1248,7 +1248,7 @@ dependencies = [ [[package]] name = "mullvad-daemon" -version = "2020.4.0-beta1" +version = "2020.4.0-beta2" dependencies = [ "android_logger 0.8.5 (registry+https://github.com/rust-lang/crates.io-index)", "cfg-if 0.1.10 (registry+https://github.com/rust-lang/crates.io-index)", @@ -1325,9 +1325,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 2020.4.0-beta1", + "mullvad-daemon 2020.4.0-beta2", "mullvad-paths 0.1.0", - "mullvad-problem-report 2020.4.0-beta1", + "mullvad-problem-report 2020.4.0-beta2", "mullvad-types 0.1.0", "talpid-core 0.1.0", "talpid-types 0.1.0", @@ -1344,7 +1344,7 @@ dependencies = [ [[package]] name = "mullvad-problem-report" -version = "2020.4.0-beta1" +version = "2020.4.0-beta2" 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)", @@ -1387,7 +1387,7 @@ dependencies = [ [[package]] name = "mullvad-setup" -version = "2020.4.0-beta1" +version = "2020.4.0-beta2" dependencies = [ "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", "env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)", @@ -2525,7 +2525,7 @@ dependencies = [ [[package]] name = "talpid-openvpn-plugin" -version = "2020.4.0-beta1" +version = "2020.4.0-beta2" 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 25639a6fb6..5771073e5c 100644 --- a/android/build.gradle +++ b/android/build.gradle @@ -23,8 +23,8 @@ android { applicationId "net.mullvad.mullvadvpn" minSdkVersion 19 targetSdkVersion 28 - versionCode 20040001 - versionName "2020.4-beta1" + versionCode 20040002 + versionName "2020.4-beta2" } if (keystorePropertiesFile.exists()) { diff --git a/dist-assets/windows/version.h b/dist-assets/windows/version.h index cf0295aabf..0b93188982 100644 --- a/dist-assets/windows/version.h +++ b/dist-assets/windows/version.h @@ -1,4 +1,4 @@ #define MAJOR_VERSION 2020 #define MINOR_VERSION 4 #define PATCH_VERSION 0 -#define PRODUCT_VERSION "2020.4-beta1" +#define PRODUCT_VERSION "2020.4-beta2" diff --git a/gui/package-lock.json b/gui/package-lock.json index a70e3c5886..e3160cf716 100644 --- a/gui/package-lock.json +++ b/gui/package-lock.json @@ -1,6 +1,6 @@ { "name": "mullvad-vpn", - "version": "2020.4.0-beta1", + "version": "2020.4.0-beta2", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/gui/package.json b/gui/package.json index 4971a77652..6509501a8d 100644 --- a/gui/package.json +++ b/gui/package.json @@ -1,6 +1,6 @@ { "name": "mullvad-vpn", - "version": "2020.4.0-beta1", + "version": "2020.4.0-beta2", "productName": "Mullvad VPN", "private": true, "description": "Mullvad VPN client", diff --git a/mullvad-cli/Cargo.toml b/mullvad-cli/Cargo.toml index dd8bd97b9b..ec51a613e3 100644 --- a/mullvad-cli/Cargo.toml +++ b/mullvad-cli/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mullvad-cli" -version = "2020.4.0-beta1" +version = "2020.4.0-beta2" authors = ["Mullvad VPN"] description = "Manage the Mullvad VPN daemon via a convenient CLI" license = "GPL-3.0" diff --git a/mullvad-daemon/Cargo.toml b/mullvad-daemon/Cargo.toml index 8a2a062507..485c967fa9 100644 --- a/mullvad-daemon/Cargo.toml +++ b/mullvad-daemon/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mullvad-daemon" -version = "2020.4.0-beta1" +version = "2020.4.0-beta2" authors = ["Mullvad VPN"] description = "Mullvad VPN daemon. Runs and controls the VPN tunnels" license = "GPL-3.0" diff --git a/mullvad-problem-report/Cargo.toml b/mullvad-problem-report/Cargo.toml index 349950a34d..4a5ed7b09f 100644 --- a/mullvad-problem-report/Cargo.toml +++ b/mullvad-problem-report/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "mullvad-problem-report" -version = "2020.4.0-beta1" +version = "2020.4.0-beta2" authors = ["Mullvad VPN"] description = "Collect Mullvad VPN logs into a report and send it to support" license = "GPL-3.0" diff --git a/talpid-openvpn-plugin/Cargo.toml b/talpid-openvpn-plugin/Cargo.toml index 314596ec97..966a9cb0fd 100644 --- a/talpid-openvpn-plugin/Cargo.toml +++ b/talpid-openvpn-plugin/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "talpid-openvpn-plugin" -version = "2020.4.0-beta1" +version = "2020.4.0-beta2" authors = ["Mullvad VPN"] description = "OpenVPN shared library plugin for relaying OpenVPN events to talpid_core" license = "GPL-3.0" |
