Skip to content

Commit b2b72f5

Browse files
authored
Release/1.5.0 (#122)
1 parent 20917cc commit b2b72f5

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

CHANGELOG.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
Nothing yet.
89

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

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

4649
## [1.4.0] - 2022-09-09
4750
### Added
@@ -199,7 +202,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
199202
- Nothing.
200203

201204

202-
[Unreleased]: https://github.com/improbable-eng/phtree-cpp/compare/v1.4.0...HEAD
205+
[Unreleased]: https://github.com/improbable-eng/phtree-cpp/compare/v1.5.0...HEAD
206+
[1.5.0]: https://github.com/improbable-eng/phtree-cpp/compare/v1.4.0...v1.5.0
203207
[1.4.0]: https://github.com/improbable-eng/phtree-cpp/compare/v1.3.0...v1.4.0
204208
[1.3.0]: https://github.com/improbable-eng/phtree-cpp/compare/v1.2.0...v1.3.0
205209
[1.2.0]: https://github.com/improbable-eng/phtree-cpp/compare/v1.1.0...v1.2.0

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.14)
22

3-
project(phtree VERSION 1.4.0
3+
project(phtree VERSION 1.5.0
44
DESCRIPTION "PH-Tree C++"
55
HOMEPAGE_URL "https://github.com/tzaeschke/phtree-cpp"
66
LANGUAGES CXX)

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ clang/gcc are:
567567
```
568568
http_archive(
569569
name = "phtree",
570-
strip_prefix = "phtree-cpp-v1.4.0",
570+
strip_prefix = "phtree-cpp-v1.5.0",
571571
url = "https://github.com/tzaeschke/phtree-cpp",
572572
)
573573
```
@@ -609,7 +609,7 @@ include(FetchContent)
609609
FetchContent_Declare(
610610
phtree
611611
GIT_REPOSITORY https://github.com/tzaeschke/phtree-cpp.git
612-
GIT_TAG v1.4.0
612+
GIT_TAG v1.5.0
613613
)
614614
FetchContent_MakeAvailable(phtree)
615615
```

0 commit comments

Comments
 (0)