Skip to content

Commit cc1a090

Browse files
committed
Release v2.12.0
1 parent 985ef06 commit cc1a090

File tree

3 files changed

+15
-4
lines changed

3 files changed

+15
-4
lines changed

CHANGELOG.md

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

99
### Added
1010

11+
### Changed
12+
13+
### Fixed
14+
15+
16+
## [2.12.0] - 2017-03-07
17+
18+
### Added
19+
1120
- `TagMatcher` and `TagsFilter` classes for more flexibly matching tags and
1221
selecting objects based on tags. This obsoletes the less flexible classes
1322
based on `osmium::tags::Filter` classes.
@@ -572,7 +581,9 @@ This project adheres to [Semantic Versioning](http://semver.org/).
572581
Doxygen (up to version 1.8.8). This version contains a workaround to fix
573582
this.
574583

575-
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.10.3...HEAD
584+
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.12.0...HEAD
585+
[2.12.0]: https://github.com/osmcode/libosmium/compare/v2.11.0...v2.12.0
586+
[2.11.0]: https://github.com/osmcode/libosmium/compare/v2.10.3...v2.11.0
576587
[2.10.3]: https://github.com/osmcode/libosmium/compare/v2.10.2...v2.10.3
577588
[2.10.2]: https://github.com/osmcode/libosmium/compare/v2.10.1...v2.10.2
578589
[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
@@ -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 11)
27+
set(LIBOSMIUM_VERSION_MINOR 12)
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 11
37+
#define LIBOSMIUM_VERSION_MINOR 12
3838
#define LIBOSMIUM_VERSION_PATCH 0
3939

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

4242
#endif // OSMIUM_VERSION_HPP

0 commit comments

Comments
 (0)