Skip to content

Commit d2c1d87

Browse files
committed
Release v2.14.0
1 parent 9c9aedd commit d2c1d87

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

CHANGELOG.md

Lines changed: 12 additions & 2 deletions
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.14.0] - 2018-03-31
17+
18+
### Added
19+
1120
* Add `ReaderWithProgressBar` class. This wraps an `osmium::io::Reader` and an
1221
`osmium::ProgressBar` into a nice little package allowing easier use in the
1322
common case.
@@ -66,7 +75,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
6675
* Add MSYS2 build to Appveyor and fixed some Windows compile issues. (Thanks
6776
to alex85k.)
6877
* Use array instead of map to store input/output format creators.
69-
* Update included `catch.hpp` to version 1.12.0.
78+
* Update included `catch.hpp` to version 1.12.1.
7079

7180
### Fixed
7281

@@ -814,7 +823,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
814823
Doxygen (up to version 1.8.8). This version contains a workaround to fix
815824
this.
816825

817-
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.13.1...HEAD
826+
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.14.0...HEAD
827+
[2.14.0]: https://github.com/osmcode/libosmium/compare/v2.13.1...v2.14.0
818828
[2.13.1]: https://github.com/osmcode/libosmium/compare/v2.13.0...v2.13.1
819829
[2.13.0]: https://github.com/osmcode/libosmium/compare/v2.12.2...v2.13.0
820830
[2.12.2]: https://github.com/osmcode/libosmium/compare/v2.12.1...v2.12.2

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@ 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 13)
28-
set(LIBOSMIUM_VERSION_PATCH 1)
27+
set(LIBOSMIUM_VERSION_MINOR 14)
28+
set(LIBOSMIUM_VERSION_PATCH 0)
2929

3030
set(LIBOSMIUM_VERSION
3131
"${LIBOSMIUM_VERSION_MAJOR}.${LIBOSMIUM_VERSION_MINOR}.${LIBOSMIUM_VERSION_PATCH}")

include/osmium/version.hpp

Lines changed: 3 additions & 3 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 13
38-
#define LIBOSMIUM_VERSION_PATCH 1
37+
#define LIBOSMIUM_VERSION_MINOR 14
38+
#define LIBOSMIUM_VERSION_PATCH 0
3939

40-
#define LIBOSMIUM_VERSION_STRING "2.13.1"
40+
#define LIBOSMIUM_VERSION_STRING "2.14.0"
4141

4242
#endif // OSMIUM_VERSION_HPP

0 commit comments

Comments
 (0)