Commit b2b72f5 1 parent 20917cc commit b2b72f5 Copy full SHA for b2b72f5
File tree 3 files changed +8
-4
lines changed
3 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,9 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5
5
and this project adheres to [ Semantic Versioning] ( http://semver.org/spec/v2.0.0.html ) .
6
6
7
7
## [ Unreleased]
8
+ Nothing yet.
8
9
10
+ ## [ 1.5.0] - 2023-02-09
9
11
### Added
10
12
- Added B+tree multimap for internal (future) use. [ #93 ] ( https://github.com/tzaeschke/phtree-cpp/issues/93 )
11
13
- 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.
42
44
43
45
###
44
46
- 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 )
45
48
46
49
## [ 1.4.0] - 2022-09-09
47
50
### Added
@@ -199,7 +202,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
199
202
- Nothing.
200
203
201
204
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
203
207
[ 1.4.0 ] : https://github.com/improbable-eng/phtree-cpp/compare/v1.3.0...v1.4.0
204
208
[ 1.3.0 ] : https://github.com/improbable-eng/phtree-cpp/compare/v1.2.0...v1.3.0
205
209
[ 1.2.0 ] : https://github.com/improbable-eng/phtree-cpp/compare/v1.1.0...v1.2.0
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.14)
2
2
3
- project (phtree VERSION 1.4 .0
3
+ project (phtree VERSION 1.5 .0
4
4
DESCRIPTION "PH-Tree C++"
5
5
HOMEPAGE_URL "https://github.com/tzaeschke/phtree-cpp"
6
6
LANGUAGES CXX)
Original file line number Diff line number Diff line change @@ -567,7 +567,7 @@ clang/gcc are:
567
567
```
568
568
http_archive(
569
569
name = "phtree",
570
- strip_prefix = "phtree-cpp-v1.4 .0",
570
+ strip_prefix = "phtree-cpp-v1.5 .0",
571
571
url = "https://github.com/tzaeschke/phtree-cpp",
572
572
)
573
573
```
@@ -609,7 +609,7 @@ include(FetchContent)
609
609
FetchContent_Declare(
610
610
phtree
611
611
GIT_REPOSITORY https://github.com/tzaeschke/phtree-cpp.git
612
- GIT_TAG v1.4 .0
612
+ GIT_TAG v1.5 .0
613
613
)
614
614
FetchContent_MakeAvailable(phtree)
615
615
```
You can’t perform that action at this time.
0 commit comments