Skip to content

Commit 80df1d6

Browse files
committed
Release v2.9.0
1 parent 110dc5c commit 80df1d6

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 14 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,16 +8,25 @@ This project adheres to [Semantic Versioning](http://semver.org/).
88

99
### Added
1010

11+
### Changed
12+
13+
### Fixed
14+
15+
16+
## [2.9.0] - 2016-09-15
17+
18+
### Added
19+
1120
- Support for reading OPL files.
1221
- For diff output OSM objects in buffers can be marked as only in one or the
1322
other file. The OPL and debug output formats support diff output based on
1423
this.
15-
- Add documentation and range checks to Tile struct.
24+
- Add documentation and range checks to `Tile` struct.
1625
- More documentation.
1726
- More examples and more extensive comments on examples.
18-
- Support for a progress report in osmium::io::Reader() and a ProgressBar
27+
- Support for a progress report in `osmium::io::Reader()` and a `ProgressBar`
1928
utility class to use it.
20-
- New OSMObject::set_timestamp(const char*) function.
29+
- New `OSMObject::set_timestamp(const char*)` function.
2130

2231
### Changed
2332

@@ -401,7 +410,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
401410
Doxygen (up to version 1.8.8). This version contains a workaround to fix
402411
this.
403412

404-
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.8.0...HEAD
413+
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.9.0...HEAD
414+
[2.9.0]: https://github.com/osmcode/libosmium/compare/v2.8.0...v2.9.0
405415
[2.8.0]: https://github.com/osmcode/libosmium/compare/v2.7.2...v2.8.0
406416
[2.7.2]: https://github.com/osmcode/libosmium/compare/v2.7.1...v2.7.2
407417
[2.7.1]: https://github.com/osmcode/libosmium/compare/v2.7.0...v2.7.1

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ set(CMAKE_CONFIGURATION_TYPES "Debug;Release;RelWithDebInfo;MinSizeRel;Dev;Cover
2424
project(libosmium)
2525

2626
set(LIBOSMIUM_VERSION_MAJOR 2)
27-
set(LIBOSMIUM_VERSION_MINOR 8)
27+
set(LIBOSMIUM_VERSION_MINOR 9)
2828
set(LIBOSMIUM_VERSION_PATCH 0)
2929

3030
set(LIBOSMIUM_VERSION

include/osmium/version.hpp

Lines changed: 2 additions & 2 deletions
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 8
37+
#define LIBOSMIUM_VERSION_MINOR 9
3838
#define LIBOSMIUM_VERSION_PATCH 0
3939

40-
#define LIBOSMIUM_VERSION_STRING "2.8.0"
40+
#define LIBOSMIUM_VERSION_STRING "2.9.0"
4141

4242
#endif // OSMIUM_VERSION_HPP

0 commit comments

Comments
 (0)