diff --git a/CHANGELOG.md b/CHANGELOG.md index 6177df7..b36b626 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,16 @@ +## 1.3.0 (2022-02-16) + +### Features + +* Support pool refill strategy and implement conservative and greedy (default) - (#20) + +### Misc + +* cmake: Use system googletest library if found +* cmake: Mute googletest warning +* workflow: Check .ipp files with clang-format + + ## 1.2.0 (2021-11-24) ### Features diff --git a/CMakeLists.txt b/CMakeLists.txt index 614230a..a9771e7 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.0 FATAL_ERROR) set(STREAMCLIENT_VERSION_MAJOR "1") -set(STREAMCLIENT_VERSION_MINOR "2") +set(STREAMCLIENT_VERSION_MINOR "3") set(STREAMCLIENT_VERSION_RELEASE "0") set(STREAMCLIENT_SUMMARY "C++ library") set(STREAMCLIENT_REPOSITORY_URL "https://github.com/TinkoffCreditSystems/stream-client")