diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2752d8396a559fb3fdc87fa8ecc6e61b85e019a9..ab1af2932bce059334d98b8e8f6fc474887bbcc4 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
 # Changelog
 
+## [0.6.2] -- 2022-02-22
+
+- Fix exception on "new" version string format
+
 ## [0.6.1] -- 2021-12-20
 
 - Set counter for encrypted files always to 0
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 82c03c3b6a40fb8bf8ab653499321928248658eb..921041c9812a60075a3f410854ea9e86b8b3a9b1 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -38,12 +38,12 @@ option(USE_BUNDLED_SPDLOG "Use the bundled version of spdlog." ${HUNTER_ENABLED}
 
 if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.12)
 project(matrix_client
-	VERSION 0.6.1
+	VERSION 0.6.2
 	DESCRIPTION "Client API library for Matrix."
 	HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient)
 else()
 project(matrix_client
-	VERSION 0.6.1
+	VERSION 0.6.2
 	DESCRIPTION "Client API library for Matrix.")
 endif()
 
diff --git a/appveyor.yml b/appveyor.yml
index bffd9e6500bbac59a7e7315971bf1938c263afe5..c2215a9e661c7bf4e77a285be75d5a67600c2630 100644
--- a/appveyor.yml
+++ b/appveyor.yml
@@ -1,6 +1,6 @@
 ---
 
-version: 0.6.1-{build}
+version: 0.6.2-{build}
 
 configuration: Release
 image: Visual Studio 2019
diff --git a/lib/http/client.cpp b/lib/http/client.cpp
index db067c8484e455e878e438fa1b5ea687a8e9936a..8b461f320ac6012fea599f53618698629aba37c9 100644
--- a/lib/http/client.cpp
+++ b/lib/http/client.cpp
@@ -54,7 +54,7 @@ coeurl::Headers
 mtx::http::Client::prepare_headers(bool requires_auth)
 {
     coeurl::Headers headers;
-    headers["User-Agent"] = "mtxclient v0.6.1";
+    headers["User-Agent"] = "mtxclient v0.6.2";
 
     if (requires_auth && !access_token_.empty())
         headers["Authorization"] = "Bearer " + access_token();
diff --git a/meson.build b/meson.build
index f8d6ddbf2711be8f89cfffe4a83fffc64f5d1ea4..e465b068916854dd35f9cb25bf8eb034aa6f3a4d 100644
--- a/meson.build
+++ b/meson.build
@@ -1,7 +1,7 @@
 project(
   'mtxclient',
   'cpp',
-version : '0.6.1',
+version : '0.6.2',
 meson_version : '>=0.57.0',
 license : 'MIT',
 default_options : 'cpp_std=c++17'