From 457bc52773b40142848f0b2ab025516bf6ed634d Mon Sep 17 00:00:00 2001 From: Nicolas Werner Date: Tue, 11 Jun 2024 00:15:15 +0200 Subject: [PATCH] Bump version to 0.10.0 --- CHANGELOG.md | 2 +- CMakeLists.txt | 4 ++-- meson.build | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e00ddaa8..e0535a69 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## [0.10.0] -- unreleased +## [0.10.0] -- 2024-06-11 - Authentication for media (MSC3916, experimental) - Intentional mentions and associated push rules (event_property_is and event_property_contains) diff --git a/CMakeLists.txt b/CMakeLists.txt index 4e5ae22d..16c7b892 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.9.2 + VERSION 0.10.0 DESCRIPTION "Client API library for Matrix." HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient) else() project(matrix_client - VERSION 0.9.2 + VERSION 0.10.0 DESCRIPTION "Client API library for Matrix.") endif() diff --git a/meson.build b/meson.build index 7d44b797..0805c6aa 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'mtxclient', 'cpp', -version : '0.9.2', +version : '0.10.0', meson_version : '>=0.57.0', license : 'MIT', default_options : 'cpp_std=c++20'