Skip to content

Commit ace232d

Browse files
Release 1.1.0 (#25)
1 parent fec4837 commit ace232d

File tree

3 files changed

+196
-182
lines changed

3 files changed

+196
-182
lines changed

CHANGELOG.md

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,23 @@ 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.
9+
10+
## [1.1.0] - 2022-01-25
811
### Added
9-
- FilterSphere for filtering by sphere constraint (by ctbur)
12+
- FilterSphere for filtering by sphere constraint (by ctbur) [#16](https://github.com/improbable-eng/phtree-cpp/pull/16)
13+
- IEEE converter for 32bit float, see `distance.h` (by ctbur) [#18](https://github.com/improbable-eng/phtree-cpp/pull/18)
14+
1015
### Changed
11-
- Fixed imports `<climits>` -> `<limits>` (by ctbur)
12-
- Cleaned up build scripts
13-
- Fixed warnings:
16+
- Performance improvement for updates and queries: removed use of `std::variant`. [#23](https://github.com/improbable-eng/phtree-cpp/pull/23)
17+
- Fixed imports `<climits>` -> `<limits>` (by ctbur) [#15](https://github.com/improbable-eng/phtree-cpp/pull/15)
18+
- Cleaned up build scripts [#21](https://github.com/improbable-eng/phtree-cpp/pull/21)
19+
- Fixed warnings: [#20](https://github.com/improbable-eng/phtree-cpp/pull/20)
1420
- "unused function argument" warnings
1521
- gcc/clang warnings
1622
- MSVC warnings
1723
- reserved identifier warnings (identifiers starting with `_`)
18-
- typos in README.md
24+
- typos in README.md [#22](https://github.com/improbable-eng/phtree-cpp/pull/22)
1925

2026
## [1.0.1] - 2021-05-06
2127
### Changed
@@ -60,7 +66,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
6066
- Nothing.
6167

6268

63-
[Unreleased]: https://github.com/improbable-eng/phtree-cpp/compare/v1.0.1...HEAD
69+
[Unreleased]: https://github.com/improbable-eng/phtree-cpp/compare/v1.1.0...HEAD
70+
[1.1.0]: https://github.com/improbable-eng/phtree-cpp/compare/v1.0.0...v1.1.0
6471
[1.0.1]: https://github.com/improbable-eng/phtree-cpp/compare/v1.0.0...v1.0.1
6572
[1.0.0]: https://github.com/improbable-eng/phtree-cpp/compare/v0.1.0...v1.0.0
66-
[0.2.0]: https://github.com/improbable-eng/phtree-cpp/compare/v0.1.0...v0.2.0

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
cmake_minimum_required(VERSION 3.14)
22

33
# set the project name
4-
project(PH_Tree_Main VERSION 1.0.1
4+
project(PH_Tree_Main VERSION 1.1.0
55
DESCRIPTION "PH-Tree C++"
66
LANGUAGES CXX)
77

0 commit comments

Comments
 (0)