summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2021-02-18 16:24:13 +0100
committerLinus Färnstrand <linus@mullvad.net>2021-02-18 16:24:23 +0100
commit14d63a91d1e058b6dcc89d0eef0756706d4e956d (patch)
tree641e4b761bc9b4628e110185c03a5758a5799872
parent97c1b43f742b772fe47950d3a12762f01ceab85c (diff)
downloadmullvadvpn-14d63a91d1e058b6dcc89d0eef0756706d4e956d.tar.xz
mullvadvpn-14d63a91d1e058b6dcc89d0eef0756706d4e956d.zip
Bump version to 2021.2
-rw-r--r--android/build.gradle4
-rw-r--r--dist-assets/windows/version.h2
-rw-r--r--gui/package-lock.json4
-rw-r--r--gui/package.json2
-rw-r--r--mullvad-cli/Cargo.toml2
-rw-r--r--mullvad-daemon/Cargo.toml2
-rw-r--r--mullvad-exclude/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, 12 insertions, 12 deletions
diff --git a/android/build.gradle b/android/build.gradle
index 38a1f53359..5a9c573a08 100644
--- a/android/build.gradle
+++ b/android/build.gradle
@@ -22,8 +22,8 @@ android {
applicationId "net.mullvad.mullvadvpn"
minSdkVersion 24
targetSdkVersion 30
- versionCode 21020001
- versionName "2021.2-beta1"
+ versionCode 21020099
+ versionName "2021.2"
}
if (keystorePropertiesFile.exists()) {
diff --git a/dist-assets/windows/version.h b/dist-assets/windows/version.h
index fa13c0c0f3..a78bd1d4c6 100644
--- a/dist-assets/windows/version.h
+++ b/dist-assets/windows/version.h
@@ -1,4 +1,4 @@
#define MAJOR_VERSION 2021
#define MINOR_VERSION 2
#define PATCH_VERSION 0
-#define PRODUCT_VERSION "2021.2-beta1"
+#define PRODUCT_VERSION "2021.2"
diff --git a/gui/package-lock.json b/gui/package-lock.json
index 3e42b5e480..0c8ef829c2 100644
--- a/gui/package-lock.json
+++ b/gui/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "mullvad-vpn",
- "version": "2021.2.0-beta1",
+ "version": "2021.2.0",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "mullvad-vpn",
- "version": "2021.2.0-beta1",
+ "version": "2021.2.0",
"hasInstallScript": true,
"license": "GPL-3.0",
"dependencies": {
diff --git a/gui/package.json b/gui/package.json
index e9a6c546e8..3bcdf71167 100644
--- a/gui/package.json
+++ b/gui/package.json
@@ -1,6 +1,6 @@
{
"name": "mullvad-vpn",
- "version": "2021.2.0-beta1",
+ "version": "2021.2.0",
"productName": "Mullvad VPN",
"private": true,
"description": "Mullvad VPN client",
diff --git a/mullvad-cli/Cargo.toml b/mullvad-cli/Cargo.toml
index 0bf902f420..2090fd5796 100644
--- a/mullvad-cli/Cargo.toml
+++ b/mullvad-cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-cli"
-version = "2021.2.0-beta1"
+version = "2021.2.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 b3b3d28353..7db8b73511 100644
--- a/mullvad-daemon/Cargo.toml
+++ b/mullvad-daemon/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-daemon"
-version = "2021.2.0-beta1"
+version = "2021.2.0"
authors = ["Mullvad VPN"]
description = "Mullvad VPN daemon. Runs and controls the VPN tunnels"
license = "GPL-3.0"
diff --git a/mullvad-exclude/Cargo.toml b/mullvad-exclude/Cargo.toml
index cfbd1f5cd5..2b5589bc0d 100644
--- a/mullvad-exclude/Cargo.toml
+++ b/mullvad-exclude/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-exclude"
-version = "2021.2.0-beta1"
+version = "2021.2.0"
authors = ["Mullvad VPN"]
license = "GPL-3.0"
edition = "2018"
diff --git a/mullvad-problem-report/Cargo.toml b/mullvad-problem-report/Cargo.toml
index d43ebee50a..50538c70df 100644
--- a/mullvad-problem-report/Cargo.toml
+++ b/mullvad-problem-report/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-problem-report"
-version = "2021.2.0-beta1"
+version = "2021.2.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 645481bf3e..12d5e81a21 100644
--- a/mullvad-setup/Cargo.toml
+++ b/mullvad-setup/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-setup"
-version = "2021.2.0-beta1"
+version = "2021.2.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 a118fab73a..55bc9c9e3a 100644
--- a/talpid-openvpn-plugin/Cargo.toml
+++ b/talpid-openvpn-plugin/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "talpid-openvpn-plugin"
-version = "2021.2.0-beta1"
+version = "2021.2.0"
authors = ["Mullvad VPN"]
description = "OpenVPN shared library plugin for relaying OpenVPN events to talpid_core"
license = "GPL-3.0"