Skip to content

Commit

Permalink
release v1.12.0
Browse files Browse the repository at this point in the history
  • Loading branch information
atimin committed Oct 4, 2024
1 parent 578a519 commit 8a51094
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 5 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand All @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -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})

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
2 changes: 1 addition & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion examples/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 8a51094

Please sign in to comment.