Skip to content

Commit 42bf1fd

Browse files
committed
Bump version to 0.8.2
1 parent c2fbf21 commit 42bf1fd

File tree

5 files changed

+9
-5
lines changed

5 files changed

+9
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
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

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@ option(USE_BUNDLED_LIBCURL "Use the bundled version of spdlog." ${HUNTER_ENABLED
3737

3838
if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.12)
3939
project(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)
4343
else()
4444
project(matrix_client
45-
VERSION 0.8.1
45+
VERSION 0.8.2
4646
DESCRIPTION "Client API library for Matrix.")
4747
endif()
4848

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.8.1-{build}
3+
version: 0.8.2-{build}
44

55
configuration: Release
66
image: Visual Studio 2019

lib/http/client.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ coeurl::Headers
5555
mtx::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();

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.8.1',
4+
version : '0.8.2',
55
meson_version : '>=0.57.0',
66
license : 'MIT',
77
default_options : 'cpp_std=c++17'

0 commit comments

Comments
 (0)