Bump up to v0.8.3

This commit is contained in:
Stanislav Angelovic
2020-09-11 22:29:15 +02:00
parent 3b735bf1aa
commit 6e8e5aadb6
2 changed files with 10 additions and 1 deletions

View File

@ -4,7 +4,7 @@
cmake_minimum_required(VERSION 3.13)
project(sdbus-c++ VERSION 0.8.2 LANGUAGES C CXX)
project(sdbus-c++ VERSION 0.8.3 LANGUAGES C CXX)
include(GNUInstallDirs) # Installation directories for `install` command and pkgconfig file

View File

@ -160,3 +160,12 @@ v0.8.2
- Fix integration test cases failing in specific situations
- Fix build with clang 9.0.1 and libcxx
- Fix potential data race in Proxy's condition variable
v0.8.3
- Fix build with gcc 8.3
- Address a few inconsistencies and make code more idiomatic
- Clean up integration tests
- Remove non-virtual-dtor warnings by making classes final
- Update CMake configuration flag names
- Fix unused variable warning for release builds
- Introduce CI workflow based on GitHub Actions