Skip to content

Commit

Permalink
Release 0.6.2
Browse files Browse the repository at this point in the history
  • Loading branch information
deepbluev7 committed Feb 22, 2022
1 parent a4b55e8 commit dd2f46a
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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()

Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---

version: 0.6.1-{build}
version: 0.6.2-{build}

configuration: Release
image: Visual Studio 2019
Expand Down
2 changes: 1 addition & 1 deletion lib/http/client.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit dd2f46a

Please sign in to comment.