Skip to content

Commit

Permalink
Release/1.5.0 (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
tzaeschke authored Feb 9, 2023
1 parent 20917cc commit b2b72f5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [Unreleased]
Nothing yet.

## [1.5.0] - 2023-02-09
### Added
- Added B+tree multimap for internal (future) use. [#93](https://github.com/tzaeschke/phtree-cpp/issues/93)
- Added some fuzz tests. Not that these require manual compilation, see [fuzzer/README.md](fuzzer/README.md).
Expand Down Expand Up @@ -42,6 +44,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

###
- Fixed copy cstr/assignment of B+trees, see also #102. [#119](https://github.com/tzaeschke/phtree-cpp/pull/119)
- Fixed numerous warnings when compiling with MSVC. [#120](https://github.com/tzaeschke/phtree-cpp/issues/120)

## [1.4.0] - 2022-09-09
### Added
Expand Down Expand Up @@ -199,7 +202,8 @@ 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.4.0...HEAD
[Unreleased]: https://github.com/improbable-eng/phtree-cpp/compare/v1.5.0...HEAD
[1.5.0]: https://github.com/improbable-eng/phtree-cpp/compare/v1.4.0...v1.5.0
[1.4.0]: https://github.com/improbable-eng/phtree-cpp/compare/v1.3.0...v1.4.0
[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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.14)

project(phtree VERSION 1.4.0
project(phtree VERSION 1.5.0
DESCRIPTION "PH-Tree C++"
HOMEPAGE_URL "https://github.com/tzaeschke/phtree-cpp"
LANGUAGES CXX)
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ clang/gcc are:
```
http_archive(
name = "phtree",
strip_prefix = "phtree-cpp-v1.4.0",
strip_prefix = "phtree-cpp-v1.5.0",
url = "https://github.com/tzaeschke/phtree-cpp",
)
```
Expand Down Expand Up @@ -609,7 +609,7 @@ include(FetchContent)
FetchContent_Declare(
phtree
GIT_REPOSITORY https://github.com/tzaeschke/phtree-cpp.git
GIT_TAG v1.4.0
GIT_TAG v1.5.0
)
FetchContent_MakeAvailable(phtree)
```
Expand Down

0 comments on commit b2b72f5

Please sign in to comment.