Skip to content

Commit a44ae7b

Browse files
committed
Release v2.19.0
1 parent d74ee51 commit a44ae7b

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
lines changed

CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,20 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1010

1111
### Changed
1212

13+
### Fixed
14+
15+
## [2.19.0] - 2023-01-19
16+
17+
### Changed
18+
1319
* Mark RapidJSON support as deprecated.
1420
* Update included Catch to v2.13.10.
1521
* Remove deprecated BoolVector class.
1622
* Remove deprecated NWRIdSet class.
1723
* Remove deprecated AssemblerConfig constructor.
1824
* Print start of offending string in overlong string exception.
1925
* Implement `set_thread_name()` on FreeBSD.
26+
* Some small code cleanups.
2027

2128
### Fixed
2229

@@ -1264,7 +1271,8 @@ long time. These will not be part of the next version of libosmium:
12641271
Doxygen (up to version 1.8.8). This version contains a workaround to fix
12651272
this.
12661273

1267-
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.18.0...HEAD
1274+
[unreleased]: https://github.com/osmcode/libosmium/compare/v2.19.0...HEAD
1275+
[2.19.0]: https://github.com/osmcode/libosmium/compare/v2.18.9...v2.19.0
12681276
[2.18.0]: https://github.com/osmcode/libosmium/compare/v2.17.3...v2.18.0
12691277
[2.17.3]: https://github.com/osmcode/libosmium/compare/v2.17.2...v2.17.3
12701278
[2.17.2]: https://github.com/osmcode/libosmium/compare/v2.17.1...v2.17.2

CMakeLists.txt

+1-1
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 18)
42+
set(LIBOSMIUM_VERSION_MINOR 19)
4343
set(LIBOSMIUM_VERSION_PATCH 0)
4444

4545
set(LIBOSMIUM_VERSION

include/osmium/version.hpp

+2-2
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 18
37+
#define LIBOSMIUM_VERSION_MINOR 19
3838
#define LIBOSMIUM_VERSION_PATCH 0
3939

40-
#define LIBOSMIUM_VERSION_STRING "2.18.0"
40+
#define LIBOSMIUM_VERSION_STRING "2.19.0"
4141

4242
#endif // OSMIUM_VERSION_HPP

0 commit comments

Comments
 (0)