From 8a51094fc810803a7dcbad70f0cecedf6808d13f Mon Sep 17 00:00:00 2001 From: Alexey Timin Date: Fri, 4 Oct 2024 23:03:27 +0200 Subject: [PATCH] release v1.12.0 --- CHANGELOG.md | 6 +++++- CMakeLists.txt | 2 +- README.md | 2 +- conanfile.py | 2 +- examples/CMakeLists.txt | 2 +- 5 files changed, 9 insertions(+), 5 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9cfb635..aed095a 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.12.0] = 2024-10-04 + ### Added - RS-418: `IBucket::RemoveRecord`, `IBucket::RemoveRecordBatch`, `IBucket::RemoveQuery` methods for removing records, [PR-74](https://github.com/reductstore/reduct-cpp/pull/74) @@ -15,7 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - RS-419: Add IBucket::Rename method to rename bucket, [PR-77](https://github.com/reductstore/reduct-cpp/pull/77) - RS-462: Improve batching, [PR-78](https://github.com/reductstore/reduct-cpp/pull/78) -## [1.11.0] - 2022-08-19 +## [1.11.0] - 2024-08-19 ### Added @@ -220,6 +222,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [Unreleased]: https://github.com/reduct-storage/reduct-cpp/compare/v1.11.0...HEAD +[1.12.0]: https://github.com/reduct-storage/reduct-cpp/compare/v1.11.0...1.12.0 + [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 70a0d5b..030339c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.18) set(MAJOR_VERSION 1) -set(MINOR_VERSION 11) +set(MINOR_VERSION 12) set(PATCH_VERSION 0) set(REDUCT_CPP_FULL_VERSION ${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}) diff --git a/README.md b/README.md index e90a844..57958ce 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ in C++20. It allows developers to easily interact with the database from their C ## Features * Written in C++20 -* Support ReductStore [HTTP API v1.11](https://www.reduct.store/docs/next/http-api) +* Support ReductStore [HTTP API v1.12](https://www.reduct.store/docs/next/http-api) * Support HTTP and HTTPS protocols * Support Linux AMD64 and Windows diff --git a/conanfile.py b/conanfile.py index 1fe1586..72ad32a 100644 --- a/conanfile.py +++ b/conanfile.py @@ -3,7 +3,7 @@ class DriftFrameworkConan(ConanFile): name = "reduct-cpp" - version = "1.11.0" + version = "1.12.0" license = "MIT" author = "Alexey Timin" url = "https://github.com/reduct-storage/reduct-cpp" diff --git a/examples/CMakeLists.txt b/examples/CMakeLists.txt index cd871d0..0071286 100644 --- a/examples/CMakeLists.txt +++ b/examples/CMakeLists.txt @@ -8,7 +8,7 @@ find_package(OpenSSL) -find_package(ReductCpp 1.8.0) +find_package(ReductCpp 1.12.0) add_executable(usage-example usage_example.cc) add_executable(subscription subscription.cc)