Skip to content

Commit b86bafe

Browse files
committed
Release v2.11.1
1 parent 32ebf73 commit b86bafe

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,11 @@ This project adheres to [Semantic Versioning](http://semver.org/).
88

99
### Fixed
1010

11+
12+
## [2.11.1] - 2017-03-07
13+
14+
### Fixed
15+
1116
- Terminate called on full non-auto-growing buffer. (Issue #189.)
1217
- When file formats were used that were not compiled into the binary, it
1318
terminated instead of throwing. (Issue #197.)
@@ -526,7 +531,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
526531
Doxygen (up to version 1.8.8). This version contains a workaround to fix
527532
this.
528533

529-
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.10.3...HEAD
534+
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.11.1...HEAD
535+
[2.11.1]: https://github.com/osmcode/libosmium/compare/v2.11.0...v2.11.1
536+
[2.11.0]: https://github.com/osmcode/libosmium/compare/v2.10.3...v2.11.0
530537
[2.10.3]: https://github.com/osmcode/libosmium/compare/v2.10.2...v2.10.3
531538
[2.10.2]: https://github.com/osmcode/libosmium/compare/v2.10.1...v2.10.2
532539
[2.10.1]: https://github.com/osmcode/libosmium/compare/v2.10.0...v2.10.1

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ project(libosmium)
2525

2626
set(LIBOSMIUM_VERSION_MAJOR 2)
2727
set(LIBOSMIUM_VERSION_MINOR 11)
28-
set(LIBOSMIUM_VERSION_PATCH 0)
28+
set(LIBOSMIUM_VERSION_PATCH 1)
2929

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

include/osmium/version.hpp

Lines changed: 2 additions & 2 deletions
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 11
38-
#define LIBOSMIUM_VERSION_PATCH 0
38+
#define LIBOSMIUM_VERSION_PATCH 1
3939

40-
#define LIBOSMIUM_VERSION_STRING "2.11.0"
40+
#define LIBOSMIUM_VERSION_STRING "2.11.1"
4141

4242
#endif // OSMIUM_VERSION_HPP

0 commit comments

Comments
 (0)