File tree Expand file tree Collapse file tree 5 files changed +9
-5
lines changed
Expand file tree Collapse file tree 5 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ## [ 0.8.2] -- 2022-09-09
4+
5+ - fix crash when fetching room summaries
6+
37## [ 0.8.1] -- 2022-09-07
48
59- Allow creating rooms with custom create event but default version
Original file line number Diff line number Diff line change @@ -37,12 +37,12 @@ option(USE_BUNDLED_LIBCURL "Use the bundled version of spdlog." ${HUNTER_ENABLED
3737
3838if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.12)
3939project (matrix_client
40- VERSION 0.8.1
40+ VERSION 0.8.2
4141 DESCRIPTION "Client API library for Matrix."
4242 HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient)
4343else ()
4444project (matrix_client
45- VERSION 0.8.1
45+ VERSION 0.8.2
4646 DESCRIPTION "Client API library for Matrix." )
4747endif ()
4848
Original file line number Diff line number Diff line change 11---
22
3- version : 0.8.1 -{build}
3+ version : 0.8.2 -{build}
44
55configuration : Release
66image : Visual Studio 2019
Original file line number Diff line number Diff line change @@ -55,7 +55,7 @@ coeurl::Headers
5555mtx::http::Client::prepare_headers (bool requires_auth)
5656{
5757 coeurl::Headers headers;
58- headers[" User-Agent" ] = " mtxclient v0.8.1 " ;
58+ headers[" User-Agent" ] = " mtxclient v0.8.2 " ;
5959
6060 if (requires_auth && !access_token_.empty ())
6161 headers[" Authorization" ] = " Bearer " + access_token ();
Original file line number Diff line number Diff line change 11project (
22 ' mtxclient' ,
33 ' cpp' ,
4- version : ' 0.8.1 ' ,
4+ version : ' 0.8.2 ' ,
55meson_version : ' >=0.57.0' ,
66license : ' MIT' ,
77default_options : ' cpp_std=c++17'
You can’t perform that action at this time.
0 commit comments