Skip to content
Snippets Groups Projects
Verified Commit d4301e79 authored by Nicolas Werner's avatar Nicolas Werner
Browse files

Bump version to 0.8.1

parent a00a04ad
No related branches found
No related tags found
No related merge requests found
Pipeline #3574 passed
# Changelog # Changelog
## [0.8.1] -- 2022-09-07
- Allow creating rooms with custom create event but default version
- Update dependencies
- Support stable hidden read receipts
- Validate fields servers are required to validate again
- Fix voip v1 event parsing (contributed by r0hit)
- Use hidden friends to reduce overload sets
- Add support for the unstable polics room type
- Support querying server capabilities
## [0.8.0] -- 2022-07-22 ## [0.8.0] -- 2022-07-22
- Update hidden read receipts to current MSC - Update hidden read receipts to current MSC
......
...@@ -37,12 +37,12 @@ option(USE_BUNDLED_LIBCURL "Use the bundled version of spdlog." ${HUNTER_ENABLED ...@@ -37,12 +37,12 @@ option(USE_BUNDLED_LIBCURL "Use the bundled version of spdlog." ${HUNTER_ENABLED
if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.12) if (CMAKE_VERSION VERSION_GREATER_EQUAL 3.12)
project(matrix_client project(matrix_client
VERSION 0.8.0 VERSION 0.8.1
DESCRIPTION "Client API library for Matrix." DESCRIPTION "Client API library for Matrix."
HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient) HOMEPAGE_URL https://github.com/Nheko-Reborn/mtxclient)
else() else()
project(matrix_client project(matrix_client
VERSION 0.8.0 VERSION 0.8.1
DESCRIPTION "Client API library for Matrix.") DESCRIPTION "Client API library for Matrix.")
endif() endif()
......
--- ---
version: 0.8.0-{build} version: 0.8.1-{build}
configuration: Release configuration: Release
image: Visual Studio 2019 image: Visual Studio 2019
......
...@@ -55,7 +55,7 @@ coeurl::Headers ...@@ -55,7 +55,7 @@ coeurl::Headers
mtx::http::Client::prepare_headers(bool requires_auth) mtx::http::Client::prepare_headers(bool requires_auth)
{ {
coeurl::Headers headers; coeurl::Headers headers;
headers["User-Agent"] = "mtxclient v0.8.0"; headers["User-Agent"] = "mtxclient v0.8.1";
if (requires_auth && !access_token_.empty()) if (requires_auth && !access_token_.empty())
headers["Authorization"] = "Bearer " + access_token(); headers["Authorization"] = "Bearer " + access_token();
......
project( project(
'mtxclient', 'mtxclient',
'cpp', 'cpp',
version : '0.8.0', version : '0.8.1',
meson_version : '>=0.57.0', meson_version : '>=0.57.0',
license : 'MIT', license : 'MIT',
default_options : 'cpp_std=c++17' default_options : 'cpp_std=c++17'
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment