Skip to content

Commit 85aa0ec

Browse files
committed
Release v2.22.0
1 parent edfc1b4 commit 85aa0ec

File tree

3 files changed

+12
-6
lines changed

3 files changed

+12
-6
lines changed

CHANGELOG.md

Lines changed: 9 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1010

1111
### Changed
1212

13+
### Fixed
14+
15+
16+
## [2.22.0] - 2025-03-17
17+
18+
### Changed
19+
1320
* Extend RelationsMapIndex to work with 64bit IDs. This should not change
1421
anything for typical OSM use (where relation IDs fit in 32bit), but help
1522
with users adding their own relations.
@@ -18,8 +25,6 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1825
* Remove special cases disabling regex support for old C++ libs.
1926
* Various code cleanups.
2027

21-
### Fixed
22-
2328

2429
## [2.21.0] - 2025-01-13
2530

@@ -1312,7 +1317,8 @@ long time. These will not be part of the next version of libosmium:
13121317
Doxygen (up to version 1.8.8). This version contains a workaround to fix
13131318
this.
13141319

1315-
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.21.0...HEAD
1320+
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.22.0...HEAD
1321+
[2.22.0]: https://github.com/osmcode/libosmium/compare/v2.21.0...v2.22.0
13161322
[2.21.0]: https://github.com/osmcode/libosmium/compare/v2.20.0...v2.21.0
13171323
[2.20.0]: https://github.com/osmcode/libosmium/compare/v2.19.0...v2.20.0
13181324
[2.19.0]: https://github.com/osmcode/libosmium/compare/v2.18.9...v2.19.0

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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 21)
42+
set(LIBOSMIUM_VERSION_MINOR 22)
4343
set(LIBOSMIUM_VERSION_PATCH 0)
4444

4545
set(LIBOSMIUM_VERSION

include/osmium/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ DEALINGS IN THE SOFTWARE.
3737
#define LIBOSMIUM_VERSION_MAJOR 2
3838

3939
// NOLINTNEXTLINE(modernize-macro-to-enum)
40-
#define LIBOSMIUM_VERSION_MINOR 21
40+
#define LIBOSMIUM_VERSION_MINOR 22
4141

4242
// NOLINTNEXTLINE(modernize-macro-to-enum)
4343
#define LIBOSMIUM_VERSION_PATCH 0
4444

45-
#define LIBOSMIUM_VERSION_STRING "2.21.0"
45+
#define LIBOSMIUM_VERSION_STRING "2.22.0"
4646

4747
#endif // OSMIUM_VERSION_HPP

0 commit comments

Comments
 (0)