Skip to content

Commit a9a6087

Browse files
committed
Bump version
1 parent a2ea44e commit a9a6087

File tree

5 files changed

+15
-5
lines changed

5 files changed

+15
-5
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [0.9.2] -- 2023-02-20
4+
5+
- Fix compilation with gcc13. (vitaly)
6+
- Handle incorrect pushrules sent by construct better.
7+
- Don't highlight everything, when an empty display name is set.
8+
- Document security of the default parameters to PBKDF2.
9+
- Fix double invokation of callback if callback throws.
10+
- Fix compiling tests with LTO.
11+
- Clean up some duplicate symbols in the library.
12+
313
## [0.9.1] -- 2023-01-13
414

515
- Fix building with user specified toolchain files.

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,12 +38,12 @@ option(USE_BUNDLED_RE2 "Use the bundled version of re2." ${HUNTER_ENABLED})
3838

3939
if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.12)
4040
project(matrix_client
41-
VERSION 0.9.1
41+
VERSION 0.9.2
4242
DESCRIPTION "Client API library for Matrix."
4343
HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient)
4444
else()
4545
project(matrix_client
46-
VERSION 0.9.1
46+
VERSION 0.9.2
4747
DESCRIPTION "Client API library for Matrix.")
4848
endif()
4949

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22

3-
version: 0.9.1-{build}
3+
version: 0.9.2-{build}
44

55
configuration: Release
66
image: Visual Studio 2022

lib/http/client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ coeurl::Headers
6161
mtx::http::Client::prepare_headers(bool requires_auth)
6262
{
6363
coeurl::Headers headers;
64-
headers["User-Agent"] = "mtxclient v0.9.1";
64+
headers["User-Agent"] = "mtxclient v0.9.2";
6565

6666
if (requires_auth && !access_token_.empty())
6767
headers["Authorization"] = "Bearer " + access_token();

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'mtxclient',
33
'cpp',
4-
version : '0.9.1',
4+
version : '0.9.2',
55
meson_version : '>=0.57.0',
66
license : 'MIT',
77
default_options : 'cpp_std=c++20'

0 commit comments

Comments
 (0)