Skip to content

Commit d124e2e

Browse files
committed
Release v2.17.1
1 parent 30f5c4a commit d124e2e

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

+11-1
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,15 @@ This project adheres to [Semantic Versioning](https://semver.org/).
88

99
### Added
1010

11+
### Changed
12+
13+
### Fixed
14+
15+
16+
## [2.17.1] - 2021-10-05
17+
18+
### Added
19+
1120
* Add `osmium_tags_filter` example showing use of tags filter.
1221
* Add `Writer::set_header()` function to set header after constructing.
1322

@@ -1139,7 +1148,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
11391148
Doxygen (up to version 1.8.8). This version contains a workaround to fix
11401149
this.
11411150

1142-
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.17.0...HEAD
1151+
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.17.1...HEAD
1152+
[2.17.1]: https://github.com/osmcode/libosmium/compare/v2.17.0...v2.17.1
11431153
[2.17.0]: https://github.com/osmcode/libosmium/compare/v2.16.0...v2.17.0
11441154
[2.16.0]: https://github.com/osmcode/libosmium/compare/v2.15.6...v2.16.0
11451155
[2.15.6]: https://github.com/osmcode/libosmium/compare/v2.15.5...v2.15.6

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ project(libosmium)
4040

4141
set(LIBOSMIUM_VERSION_MAJOR 2)
4242
set(LIBOSMIUM_VERSION_MINOR 17)
43-
set(LIBOSMIUM_VERSION_PATCH 0)
43+
set(LIBOSMIUM_VERSION_PATCH 1)
4444

4545
set(LIBOSMIUM_VERSION
4646
"${LIBOSMIUM_VERSION_MAJOR}.${LIBOSMIUM_VERSION_MINOR}.${LIBOSMIUM_VERSION_PATCH}")

include/osmium/version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ DEALINGS IN THE SOFTWARE.
3535

3636
#define LIBOSMIUM_VERSION_MAJOR 2
3737
#define LIBOSMIUM_VERSION_MINOR 17
38-
#define LIBOSMIUM_VERSION_PATCH 0
38+
#define LIBOSMIUM_VERSION_PATCH 1
3939

40-
#define LIBOSMIUM_VERSION_STRING "2.17.0"
40+
#define LIBOSMIUM_VERSION_STRING "2.17.1"
4141

4242
#endif // OSMIUM_VERSION_HPP

0 commit comments

Comments
 (0)