From 2a1cf15cbda4d3deb7986c9f3b38e6c7aabb0d6f Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Fri, 22 Jul 2022 01:23:40 +0200 Subject: [PATCH] Bump version to 0.8.0 --- CHANGELOG.md | 2 +- CMakeLists.txt | 4 ++-- appveyor.yml | 2 +- lib/http/client.cpp | 2 +- meson.build | 2 +- 5 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5854845f5..76f736147 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.8.0] -- unreleased +## [0.8.0] -- 2022-07-22 - Update hidden read receipts to current MSC - Add support for policy rules diff --git a/CMakeLists.txt b/CMakeLists.txt index d97d9a643..3e6768857 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -37,12 +37,12 @@ option(USE_BUNDLED_LIBCURL "Use the bundled version of spdlog." ${HUNTER_ENABLED if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.12) project(matrix_client - VERSION 0.7.0 + VERSION 0.8.0 DESCRIPTION "Client API library for Matrix." HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient) else() project(matrix_client - VERSION 0.7.0 + VERSION 0.8.0 DESCRIPTION "Client API library for Matrix.") endif() diff --git a/appveyor.yml b/appveyor.yml index 845c6b6a3..e03dae799 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ --- -version: 0.7.0-{build} +version: 0.8.0-{build} configuration: Release image: Visual Studio 2019 diff --git a/lib/http/client.cpp b/lib/http/client.cpp index d691e86c0..88e584d3a 100644 --- a/lib/http/client.cpp +++ b/lib/http/client.cpp @@ -55,7 +55,7 @@ coeurl::Headers mtx::http::Client::prepare_headers(bool requires_auth) { coeurl::Headers headers; - headers["User-Agent"] = "mtxclient v0.7.0"; + headers["User-Agent"] = "mtxclient v0.8.0"; if (requires_auth && !access_token_.empty()) headers["Authorization"] = "Bearer " + access_token(); diff --git a/meson.build b/meson.build index ba5803858..248a2e1f8 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'mtxclient', 'cpp', -version : '0.7.0', +version : '0.8.0', meson_version : '>=0.57.0', license : 'MIT', default_options : 'cpp_std=c++17'