From fcbfd85b7877b87d01778dd908984af03314167f Mon Sep 17 00:00:00 2001 From: Til Date: Sun, 28 Aug 2022 13:52:23 +0200 Subject: [PATCH] v1.3.0 --- CHANGELOG.md | 18 ++++++++++++++++-- CMakeLists.txt | 2 +- 2 files changed, 17 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5e0820c6..b74eb8ff 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,19 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] ### Added +- Nothing. + +### Changed +- Nothing. + +### Removed +- Nothing. + +### Fixed +- Nothing. + +## [1.3.0] - 2022-08-28 +### Added - Added flag to relocate() allow short cutting in case of identical keys. [#68](https://github.com/tzaeschke/phtree-cpp/issues/68) - Added tested support for move-only and copy-only value objects. @@ -136,8 +149,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. - Nothing. -[Unreleased]: https://github.com/improbable-eng/phtree-cpp/compare/v1.2.0...HEAD -[1.2.0]: https://github.com/improbable-eng/phtree-cpp/compare/v1.2.0...v1.1.0 +[Unreleased]: https://github.com/improbable-eng/phtree-cpp/compare/v1.3.0...HEAD +[1.3.0]: https://github.com/improbable-eng/phtree-cpp/compare/v1.2.0...v1.3.0 +[1.2.0]: https://github.com/improbable-eng/phtree-cpp/compare/v1.1.0...v1.2.0 [1.1.1]: https://github.com/improbable-eng/phtree-cpp/compare/v1.1.0...v1.1.1 [1.1.0]: https://github.com/improbable-eng/phtree-cpp/compare/v1.0.0...v1.1.0 [1.0.1]: https://github.com/improbable-eng/phtree-cpp/compare/v1.0.0...v1.0.1 diff --git a/CMakeLists.txt b/CMakeLists.txt index 6a7f0a7a..6936ad64 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,7 +1,7 @@ cmake_minimum_required(VERSION 3.14) # set the project name -project(phtree VERSION 1.2.0 +project(phtree VERSION 1.3.0 DESCRIPTION "PH-Tree C++" LANGUAGES CXX)