File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -12,6 +12,11 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1212### Changed
1313
1414### Fixed
15+
16+ ## [ 1.8.2] - 2026-06-30
17+
18+ ### Fixed
19+
1520- ` add_bool ` now appends data through ` buffer_customization<TBuffer>::push_back ` .
1621
1722## [ 1.8.1] - 2025-07-15
@@ -425,7 +430,9 @@ This project adheres to [Semantic Versioning](https://semver.org/).
425430- Make pbf reader and writer code endianess-aware.
426431
427432
428- [ unreleased ] : https://github.com/osmcode/libosmium/compare/v1.8.0...HEAD
433+ [ unreleased ] : https://github.com/osmcode/libosmium/compare/v1.8.2...HEAD
434+ [ 1.8.2 ] : https://github.com/osmcode/libosmium/compare/v1.8.1...v1.8.2
435+ [ 1.8.1 ] : https://github.com/osmcode/libosmium/compare/v1.8.0...v1.8.1
429436[ 1.8.0 ] : https://github.com/osmcode/libosmium/compare/v1.7.1...v1.8.0
430437[ 1.7.1 ] : https://github.com/osmcode/libosmium/compare/v1.7.0...v1.7.1
431438[ 1.7.0 ] : https://github.com/osmcode/libosmium/compare/v1.6.8...v1.7.0
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ cmake_minimum_required(VERSION 3.10.0 FATAL_ERROR)
1010
1111#-----------------------------------------------------------------------------
1212
13- project (protozero VERSION 1.8.1 LANGUAGES CXX C )
13+ project (protozero VERSION 1.8.2 LANGUAGES CXX C )
1414
1515set (CMAKE_EXPORT_COMPILE_COMMANDS ON )
1616
Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ documentation.
2323#define PROTOZERO_VERSION_MINOR 8
2424
2525// / The patch number
26- #define PROTOZERO_VERSION_PATCH 1
26+ #define PROTOZERO_VERSION_PATCH 2
2727
2828// / The complete version number
2929#define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH )
3030
3131// / Version number as string
32- #define PROTOZERO_VERSION_STRING " 1.8.1 "
32+ #define PROTOZERO_VERSION_STRING " 1.8.2 "
3333
3434#endif // PROTOZERO_VERSION_HPP
You can’t perform that action at this time.
0 commit comments