diff --git a/CHANGELOG.md b/CHANGELOG.md index 57379a1..c1dbd32 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [1.11.0] - 2022-08-19 + ### Added - RS-31: `Bucket::Update` and `Bucket::UpdateBatch` methods for changing labels, [PR-72](https://github.com/reductstore/reduct-cpp/pull/72) @@ -208,7 +210,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial implementation of Reduct Storage API v0.1.0 -[Unreleased]: https://github.com/reduct-storage/reduct-cpp/compare/v1.10.0...HEAD +[Unreleased]: https://github.com/reduct-storage/reduct-cpp/compare/v1.11.0...HEAD + +[1.11.0]: https://github.com/reduct-storage/reduct-cpp/compare/v1.10.0...1.11.0 [1.10.0]: https://github.com/reduct-storage/reduct-cpp/compare/v1.9.0...1.10.0 diff --git a/CMakeLists.txt b/CMakeLists.txt index af71f65..70a0d5b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.18) set(MAJOR_VERSION 1) -set(MINOR_VERSION 10) +set(MINOR_VERSION 11) set(PATCH_VERSION 0) set(REDUCT_CPP_FULL_VERSION ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}) diff --git a/conanfile.py b/conanfile.py index 9a0a16a..1fe1586 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,7 +3,7 @@ class DriftFrameworkConan(ConanFile): name = "reduct-cpp" - version = "1.10.0" + version = "1.11.0" license = "MIT" author = "Alexey Timin" url = "https://github.com/reduct-storage/reduct-cpp"