File tree Expand file tree Collapse file tree 5 files changed +15
-5
lines changed
Expand file tree Collapse file tree 5 files changed +15
-5
lines changed Original file line number Diff line number Diff line change 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.
Original file line number Diff line number Diff line change @@ -38,12 +38,12 @@ option(USE_BUNDLED_RE2 "Use the bundled version of re2." ${HUNTER_ENABLED})
3838
3939if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.12)
4040project (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)
4444else ()
4545project (matrix_client
46- VERSION 0.9.1
46+ VERSION 0.9.2
4747 DESCRIPTION "Client API library for Matrix." )
4848endif ()
4949
Original file line number Diff line number Diff line change 11---
22
3- version : 0.9.1 -{build}
3+ version : 0.9.2 -{build}
44
55configuration : Release
66image : Visual Studio 2022
Original file line number Diff line number Diff line change @@ -61,7 +61,7 @@ coeurl::Headers
6161mtx::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 ();
Original file line number Diff line number Diff line change 11project (
22 ' mtxclient' ,
33 ' cpp' ,
4- version : ' 0.9.1 ' ,
4+ version : ' 0.9.2 ' ,
55meson_version : ' >=0.57.0' ,
66license : ' MIT' ,
77default_options : ' cpp_std=c++20'
You can’t perform that action at this time.
0 commit comments