Skip to content

Commit

Permalink
Release 1.1.0 (#25)
Browse files Browse the repository at this point in the history
  • Loading branch information
improbable-til authored Jan 26, 2022
1 parent fec4837 commit ace232d
Show file tree
Hide file tree
Showing 3 changed files with 196 additions and 182 deletions.
20 changes: 13 additions & 7 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,17 +5,23 @@ 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.1.0] - 2022-01-25
### Added
- FilterSphere for filtering by sphere constraint (by ctbur)
- FilterSphere for filtering by sphere constraint (by ctbur) [#16](https://github.com/improbable-eng/phtree-cpp/pull/16)
- IEEE converter for 32bit float, see `distance.h` (by ctbur) [#18](https://github.com/improbable-eng/phtree-cpp/pull/18)

### Changed
- Fixed imports `<climits>` -> `<limits>` (by ctbur)
- Cleaned up build scripts
- Fixed warnings:
- Performance improvement for updates and queries: removed use of `std::variant`. [#23](https://github.com/improbable-eng/phtree-cpp/pull/23)
- Fixed imports `<climits>` -> `<limits>` (by ctbur) [#15](https://github.com/improbable-eng/phtree-cpp/pull/15)
- Cleaned up build scripts [#21](https://github.com/improbable-eng/phtree-cpp/pull/21)
- Fixed warnings: [#20](https://github.com/improbable-eng/phtree-cpp/pull/20)
- "unused function argument" warnings
- gcc/clang warnings
- MSVC warnings
- reserved identifier warnings (identifiers starting with `_`)
- typos in README.md
- typos in README.md [#22](https://github.com/improbable-eng/phtree-cpp/pull/22)

## [1.0.1] - 2021-05-06
### Changed
Expand Down Expand Up @@ -60,7 +66,7 @@ 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.0.1...HEAD
[Unreleased]: https://github.com/improbable-eng/phtree-cpp/compare/v1.1.0...HEAD
[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
[1.0.0]: https://github.com/improbable-eng/phtree-cpp/compare/v0.1.0...v1.0.0
[0.2.0]: https://github.com/improbable-eng/phtree-cpp/compare/v0.1.0...v0.2.0
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
cmake_minimum_required(VERSION 3.14)

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

Expand Down
Loading

0 comments on commit ace232d

Please sign in to comment.