Skip to content

Commit af2f6e2

Browse files
authored
Merge pull request #152 from joto/release-1.8.2
Release 1.8.2
2 parents ced9af1 + 010435d commit af2f6e2

3 files changed

Lines changed: 11 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff 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

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

1515
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
1616

include/protozero/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)