From f30d77a719f3deb66b17b99f3585ee919dbbe120 Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Thu, 12 Jan 2023 21:14:43 +0100 Subject: [PATCH] v0.9.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 094a1da5b..2c4461c51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.9.0] -- UNRELEASED +## [0.9.0] -- 2023-01-12 - Support error formatting using {fmt}/spdlog. - Don't require the events key in `state` and other keys in sync. diff --git a/CMakeLists.txt b/CMakeLists.txt index a08acff69..e8dd33306 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,12 +38,12 @@ option(USE_BUNDLED_RE2 "Use the bundled version of re2." ${HUNTER_ENABLED}) if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.12) project(matrix_client - VERSION 0.8.2 + VERSION 0.9.0 DESCRIPTION "Client API library for Matrix." HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient) else() project(matrix_client - VERSION 0.8.2 + VERSION 0.9.0 DESCRIPTION "Client API library for Matrix.") endif() diff --git a/appveyor.yml b/appveyor.yml index da51ae2a2..cfcf1bc07 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -1,6 +1,6 @@ --- -version: 0.8.2-{build} +version: 0.9.0-{build} configuration: Release image: Visual Studio 2022 diff --git a/lib/http/client.cpp b/lib/http/client.cpp index a617af327..a2f6c669a 100644 --- a/lib/http/client.cpp +++ b/lib/http/client.cpp @@ -61,7 +61,7 @@ coeurl::Headers mtx::http::Client::prepare_headers(bool requires_auth) { coeurl::Headers headers; - headers["User-Agent"] = "mtxclient v0.8.2"; + headers["User-Agent"] = "mtxclient v0.9.0"; if (requires_auth && !access_token_.empty()) headers["Authorization"] = "Bearer " + access_token(); diff --git a/meson.build b/meson.build index 7b7352b27..d7340b7e0 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'mtxclient', 'cpp', -version : '0.8.2', +version : '0.9.0', meson_version : '>=0.57.0', license : 'MIT', default_options : 'cpp_std=c++20'