summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorLinus Färnstrand <linus@mullvad.net>2022-02-14 11:47:33 +0100
committerLinus Färnstrand <linus@mullvad.net>2022-02-14 11:47:33 +0100
commit3c3472ea6956fc6530078e57f2883006714aa169 (patch)
tree0be5883d1d9e01811bb2c772eb35f1b3f605d300
parent397d67ffe6cc1e713424014d8d61b12879ff1192 (diff)
downloadmullvadvpn-2022.1-beta1.tar.xz
mullvadvpn-2022.1-beta1.zip
Updating version in package files2022.1-beta1
-rw-r--r--Cargo.lock12
-rw-r--r--dist-assets/windows/version.h6
-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, 18 insertions, 18 deletions
diff --git a/Cargo.lock b/Cargo.lock
index 3296e9a3de..62f01106a6 100644
--- a/Cargo.lock
+++ b/Cargo.lock
@@ -1286,7 +1286,7 @@ dependencies = [
[[package]]
name = "mullvad-cli"
-version = "2021.6.0"
+version = "2022.1.0-beta1"
dependencies = [
"base64",
"chrono",
@@ -1308,7 +1308,7 @@ dependencies = [
[[package]]
name = "mullvad-daemon"
-version = "2021.6.0"
+version = "2022.1.0-beta1"
dependencies = [
"android_logger",
"cfg-if 1.0.0",
@@ -1350,7 +1350,7 @@ dependencies = [
[[package]]
name = "mullvad-exclude"
-version = "2021.6.0"
+version = "2022.1.0-beta1"
dependencies = [
"err-derive",
"nix 0.23.1",
@@ -1412,7 +1412,7 @@ dependencies = [
[[package]]
name = "mullvad-problem-report"
-version = "2021.6.0"
+version = "2022.1.0-beta1"
dependencies = [
"clap",
"dirs-next",
@@ -1461,7 +1461,7 @@ dependencies = [
[[package]]
name = "mullvad-setup"
-version = "2021.6.0"
+version = "2022.1.0-beta1"
dependencies = [
"clap",
"env_logger 0.8.4",
@@ -2661,7 +2661,7 @@ dependencies = [
[[package]]
name = "talpid-openvpn-plugin"
-version = "2021.6.0"
+version = "2022.1.0-beta1"
dependencies = [
"env_logger 0.8.4",
"err-derive",
diff --git a/dist-assets/windows/version.h b/dist-assets/windows/version.h
index d124f0eb34..5525149a4f 100644
--- a/dist-assets/windows/version.h
+++ b/dist-assets/windows/version.h
@@ -1,4 +1,4 @@
-#define MAJOR_VERSION 2021
-#define MINOR_VERSION 6
+#define MAJOR_VERSION 2022
+#define MINOR_VERSION 1
#define PATCH_VERSION 0
-#define PRODUCT_VERSION "2021.6"
+#define PRODUCT_VERSION "2022.1-beta1"
diff --git a/gui/package-lock.json b/gui/package-lock.json
index 76a94b07f9..1208b9086b 100644
--- a/gui/package-lock.json
+++ b/gui/package-lock.json
@@ -1,12 +1,12 @@
{
"name": "mullvad-vpn",
- "version": "2021.6.0",
+ "version": "2022.1.0-beta1",
"lockfileVersion": 2,
"requires": true,
"packages": {
"": {
"name": "mullvad-vpn",
- "version": "2021.6.0",
+ "version": "2022.1.0-beta1",
"hasInstallScript": true,
"license": "GPL-3.0",
"dependencies": {
diff --git a/gui/package.json b/gui/package.json
index db658a1b13..7dedfe46cd 100644
--- a/gui/package.json
+++ b/gui/package.json
@@ -1,6 +1,6 @@
{
"name": "mullvad-vpn",
- "version": "2021.6.0",
+ "version": "2022.1.0-beta1",
"productName": "Mullvad VPN",
"private": true,
"description": "Mullvad VPN client",
diff --git a/mullvad-cli/Cargo.toml b/mullvad-cli/Cargo.toml
index 9341fb89a6..baa08eed47 100644
--- a/mullvad-cli/Cargo.toml
+++ b/mullvad-cli/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-cli"
-version = "2021.6.0"
+version = "2022.1.0-beta1"
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 3f37456167..794bcc4f2e 100644
--- a/mullvad-daemon/Cargo.toml
+++ b/mullvad-daemon/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-daemon"
-version = "2021.6.0"
+version = "2022.1.0-beta1"
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 f753cf604e..de425be77c 100644
--- a/mullvad-exclude/Cargo.toml
+++ b/mullvad-exclude/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-exclude"
-version = "2021.6.0"
+version = "2022.1.0-beta1"
authors = ["Mullvad VPN"]
license = "GPL-3.0"
edition = "2021"
diff --git a/mullvad-problem-report/Cargo.toml b/mullvad-problem-report/Cargo.toml
index aea2bf30d9..854b35ad93 100644
--- a/mullvad-problem-report/Cargo.toml
+++ b/mullvad-problem-report/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-problem-report"
-version = "2021.6.0"
+version = "2022.1.0-beta1"
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 de41aa3e6b..9f57f38649 100644
--- a/mullvad-setup/Cargo.toml
+++ b/mullvad-setup/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "mullvad-setup"
-version = "2021.6.0"
+version = "2022.1.0-beta1"
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 1ff75f60f5..a40dd4be94 100644
--- a/talpid-openvpn-plugin/Cargo.toml
+++ b/talpid-openvpn-plugin/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "talpid-openvpn-plugin"
-version = "2021.6.0"
+version = "2022.1.0-beta1"
authors = ["Mullvad VPN"]
description = "OpenVPN shared library plugin for relaying OpenVPN events to talpid_core"
license = "GPL-3.0"