summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2020-06-25 10:05:29 +0200
committerLinus Färnstrand <linus@mullvad.net>2020-06-25 10:05:29 +0200
commit0198a8b98683a768bb8306d7b8ead7f9a0ca114c (patch)
tree65e9bddc6434e45fabc16c12f66af537dcf11bcb
parente051c05a3d6d01a4ce53adcb6c5f151d50f11ecd (diff)
downloadmullvadvpn-2020.5.tar.xz
mullvadvpn-2020.5.zip
Updating version in package files2020.5
-rw-r--r--Cargo.lock14
-rw-r--r--android/build.gradle4
-rw-r--r--dist-assets/windows/version.h2
-rw-r--r--gui/package-lock.json2
-rw-r--r--gui/package.json2
-rw-r--r--mullvad-cli/Cargo.toml2
-rw-r--r--mullvad-daemon/Cargo.toml2
-rw-r--r--mullvad-problem-report/Cargo.toml2
-rw-r--r--mullvad-setup/Cargo.toml2
-rw-r--r--talpid-openvpn-plugin/Cargo.toml2
10 files changed, 17 insertions, 17 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 69689ce1cc..d6c4c82ddd 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1358,7 +1358,7 @@ dependencies = [
[[package]]
name = "mullvad-cli"
-version = "2020.5.0-beta2"
+version = "2020.5.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)",
@@ -1379,7 +1379,7 @@ dependencies = [
[[package]]
name = "mullvad-daemon"
-version = "2020.5.0-beta2"
+version = "2020.5.0"
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)",
@@ -1466,9 +1466,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.5.0-beta2",
+ "mullvad-daemon 2020.5.0",
"mullvad-paths 0.1.0",
- "mullvad-problem-report 2020.5.0-beta2",
+ "mullvad-problem-report 2020.5.0",
"mullvad-rpc 0.1.0",
"mullvad-types 0.1.0",
"talpid-core 0.1.0",
@@ -1486,7 +1486,7 @@ dependencies = [
[[package]]
name = "mullvad-problem-report"
-version = "2020.5.0-beta2"
+version = "2020.5.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)",
@@ -1533,7 +1533,7 @@ dependencies = [
[[package]]
name = "mullvad-setup"
-version = "2020.5.0-beta2"
+version = "2020.5.0"
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)",
@@ -2869,7 +2869,7 @@ dependencies = [
[[package]]
name = "talpid-openvpn-plugin"
-version = "2020.5.0-beta2"
+version = "2020.5.0"
dependencies = [
"env_logger 0.7.1 (registry+https://github.com/rust-lang/crates.io-index)",
"err-derive 0.2.4 (registry+https://github.com/rust-lang/crates.io-index)",
diff --git a/android/build.gradle b/android/build.gradle
index c900fb42dc..60ad2af53b 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -21,8 +21,8 @@ android {
applicationId "net.mullvad.mullvadvpn"
minSdkVersion 24
targetSdkVersion 28
- versionCode 20050002
- versionName "2020.5-beta2"
+ versionCode 20050099
+ versionName "2020.5"
}
if (keystorePropertiesFile.exists()) {
diff --git a/dist-assets/windows/version.h b/dist-assets/windows/version.h
index 36d61eb322..4e7a32578e 100644
--- a/dist-assets/windows/version.h
+++ b/dist-assets/windows/version.h
@@ -1,4 +1,4 @@
#define MAJOR_VERSION 2020
#define MINOR_VERSION 5
#define PATCH_VERSION 0
-#define PRODUCT_VERSION "2020.5-beta2"
+#define PRODUCT_VERSION "2020.5"
diff --git a/gui/package-lock.json b/gui/package-lock.json
index c0e7601074..ca9c0610fd 100644
--- a/gui/package-lock.json
+++ b/gui/package-lock.json
@@ -1,6 +1,6 @@
{
"name": "mullvad-vpn",
- "version": "2020.5.0-beta2",
+ "version": "2020.5.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {
diff --git a/gui/package.json b/gui/package.json
index fe52e98690..162d5d6500 100644
--- a/gui/package.json
+++ b/gui/package.json
@@ -1,6 +1,6 @@
{
"name": "mullvad-vpn",
- "version": "2020.5.0-beta2",
+ "version": "2020.5.0",
"productName": "Mullvad VPN",
"private": true,
"description": "Mullvad VPN client",
diff --git a/mullvad-cli/Cargo.toml b/mullvad-cli/Cargo.toml
index 9f9a9a9ca8..084be415fe 100644
--- a/mullvad-cli/Cargo.toml
+++ b/mullvad-cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-cli"
-version = "2020.5.0-beta2"
+version = "2020.5.0"
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 4bfe024f67..52b30e90f9 100644
--- a/mullvad-daemon/Cargo.toml
+++ b/mullvad-daemon/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-daemon"
-version = "2020.5.0-beta2"
+version = "2020.5.0"
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 085b2b99fe..a69246cdcb 100644
--- a/mullvad-problem-report/Cargo.toml
+++ b/mullvad-problem-report/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-problem-report"
-version = "2020.5.0-beta2"
+version = "2020.5.0"
authors = ["Mullvad VPN"]
description = "Collect Mullvad VPN logs into a report and send it to support"
license = "GPL-3.0"
diff --git a/mullvad-setup/Cargo.toml b/mullvad-setup/Cargo.toml
index 6eb50ad034..3d113870d4 100644
--- a/mullvad-setup/Cargo.toml
+++ b/mullvad-setup/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-setup"
-version = "2020.5.0-beta2"
+version = "2020.5.0"
authors = ["Mullvad VPN"]
description = "Tool used to manage daemon setup"
license = "GPL-3.0"
diff --git a/talpid-openvpn-plugin/Cargo.toml b/talpid-openvpn-plugin/Cargo.toml
index 199e3a7ee1..c81550fd25 100644
--- a/talpid-openvpn-plugin/Cargo.toml
+++ b/talpid-openvpn-plugin/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "talpid-openvpn-plugin"
-version = "2020.5.0-beta2"
+version = "2020.5.0"
authors = ["Mullvad VPN"]
description = "OpenVPN shared library plugin for relaying OpenVPN events to talpid_core"
license = "GPL-3.0"