Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Nheko Reborn
mtxclient
Commits
42bf1fd0
Verified
Commit
42bf1fd0
authored
Sep 09, 2022
by
Nicolas Werner
Browse files
Bump version to 0.8.2
parent
c2fbf217
Pipeline
#3586
passed with stage
in 30 minutes and 5 seconds
Changes
5
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG.md
View file @
42bf1fd0
# Changelog
## [0.8.2] -- 2022-09-09
-
fix crash when fetching room summaries
## [0.8.1] -- 2022-09-07
-
Allow creating rooms with custom create event but default version
...
...
CMakeLists.txt
View file @
42bf1fd0
...
...
@@ -37,12 +37,12 @@ option(USE_BUNDLED_LIBCURL "Use the bundled version of spdlog." ${HUNTER_ENABLED
if
(
CMAKE_VERSION VERSION_GREATER_EQUAL 3.12
)
project
(
matrix_client
VERSION 0.8.
1
VERSION 0.8.
2
DESCRIPTION
"Client API library for Matrix."
HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient
)
else
()
project
(
matrix_client
VERSION 0.8.
1
VERSION 0.8.
2
DESCRIPTION
"Client API library for Matrix."
)
endif
()
...
...
appveyor.yml
View file @
42bf1fd0
---
version
:
0.8.
1
-{build}
version
:
0.8.
2
-{build}
configuration
:
Release
image
:
Visual Studio
2019
...
...
lib/http/client.cpp
View file @
42bf1fd0
...
...
@@ -55,7 +55,7 @@ coeurl::Headers
mtx
::
http
::
Client
::
prepare_headers
(
bool
requires_auth
)
{
coeurl
::
Headers
headers
;
headers
[
"User-Agent"
]
=
"mtxclient v0.8.
1
"
;
headers
[
"User-Agent"
]
=
"mtxclient v0.8.
2
"
;
if
(
requires_auth
&&
!
access_token_
.
empty
())
headers
[
"Authorization"
]
=
"Bearer "
+
access_token
();
...
...
meson.build
View file @
42bf1fd0
project
(
'mtxclient'
,
'cpp'
,
version
:
'0.8.
1
'
,
version
:
'0.8.
2
'
,
meson_version
:
'>=0.57.0'
,
license
:
'MIT'
,
default_options
:
'cpp_std=c++17'
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment