Skip to content

Commit b263ba5

Browse files
committed
Release v2.17.0
1 parent d484726 commit b263ba5

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.0] - 2021-04-26
17+
18+
### Added
19+
1120
* Add "ids" output format. New IDS output format that is similar to
1221
the OPL format, but only the entity type and id is written out.
1322
* Add convenience functions `left()`, `right()`, `top()`, `bottom()` to
@@ -1108,7 +1117,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
11081117
Doxygen (up to version 1.8.8). This version contains a workaround to fix
11091118
this.
11101119

1111-
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.16.0...HEAD
1120+
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.17.0...HEAD
1121+
[2.17.0]: https://github.com/osmcode/libosmium/compare/v2.16.0...v2.17.0
11121122
[2.16.0]: https://github.com/osmcode/libosmium/compare/v2.15.6...v2.16.0
11131123
[2.15.6]: https://github.com/osmcode/libosmium/compare/v2.15.5...v2.15.6
11141124
[2.15.5]: https://github.com/osmcode/libosmium/compare/v2.15.4...v2.15.5

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover
3939
project(libosmium)
4040

4141
set(LIBOSMIUM_VERSION_MAJOR 2)
42-
set(LIBOSMIUM_VERSION_MINOR 16)
42+
set(LIBOSMIUM_VERSION_MINOR 17)
4343
set(LIBOSMIUM_VERSION_PATCH 0)
4444

4545
set(LIBOSMIUM_VERSION

include/osmium/version.hpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ DEALINGS IN THE SOFTWARE.
3434
*/
3535

3636
#define LIBOSMIUM_VERSION_MAJOR 2
37-
#define LIBOSMIUM_VERSION_MINOR 16
37+
#define LIBOSMIUM_VERSION_MINOR 17
3838
#define LIBOSMIUM_VERSION_PATCH 0
3939

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

4242
#endif // OSMIUM_VERSION_HPP

0 commit comments

Comments
 (0)