diff --git a/SilKit/cmake/SilKitVersion.cmake b/SilKit/cmake/SilKitVersion.cmake index f792b6bf7..68236a1df 100644 --- a/SilKit/cmake/SilKitVersion.cmake +++ b/SilKit/cmake/SilKitVersion.cmake @@ -27,7 +27,7 @@ macro(configure_silkit_version project_name) set(SILKIT_VERSION_MAJOR 4) set(SILKIT_VERSION_MINOR 0) - set(SILKIT_VERSION_PATCH 16) + set(SILKIT_VERSION_PATCH 17) set(SILKIT_BUILD_NUMBER 0 CACHE STRING "The build number") set(SILKIT_VERSION_SUFFIX "") diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst index bcf2811cc..713d03a69 100644 --- a/docs/CHANGELOG.rst +++ b/docs/CHANGELOG.rst @@ -5,6 +5,24 @@ All notable changes to the Vector SIL Kit project shall be documented in this fi The format is based on `Keep a Changelog (http://keepachangelog.com/en/1.0.0/) `_. +[4.0.17] - 2023-02-09 +--------------------- +This is a Quality Assured Release. + +Fixed +~~~~~ +- Fix DNS resolver issues on Ubuntu 18.04 and systemd-resolved. We now properly + strip square brackets from IPv6 addresses in URIs. +- Fixed a race-condition in the ITest_SystemMonitor. This caused sporadic failures on CI builds. + +Removed +~~~~~~~ +- Removed the deprecated CMakeSettings.json file from the source tree. + If you are a developer, use the CMakePreset.json instead which is more portable and flexible. +- Removed `usr/share/doc` from the delivery packages. This should only be part of Debian packages. + + + [4.0.16] - 2023-02-03 ---------------------