Bump revision up to 0.7.8

This commit is contained in:
sangelovic
2020-01-25 23:38:54 +01:00
parent 1e455b8ef3
commit 10977c6137
2 changed files with 4 additions and 1 deletions

View File

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

View File

@ -135,3 +135,6 @@ v0.7.6
v0.7.7
- Fix race condition of polling on D-Bus fd from two threads (event loop thread and sync D-Bus call thread)
- Little ordering fix in stress tests
v0.7.8
- Switch from thread_local to global bus instance that is used to create Variant instances (thread_local caused issues with Variant in very special inter-thread situations)