Skip to content

Commit 310b920

Browse files
committed
Release 1.8.0
1 parent 07889f6 commit 310b920

File tree

3 files changed

+13
-5
lines changed

3 files changed

+13
-5
lines changed

CHANGELOG.md

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

1212
### Changed
1313

14+
### Fixed
15+
16+
17+
## [1.8.0] - 2024-01-13
18+
19+
### Changed
20+
1421
- Switched to C++14 as minimum requirement. Modernised the code accordingly.
1522
- Only the tests need the Protobuf library when building.
1623
- Improve compatibility with various STL flavors.
@@ -410,7 +417,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
410417
- Make pbf reader and writer code endianess-aware.
411418

412419

413-
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.7.1...HEAD
420+
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.8.0...HEAD
421+
[1.8.0]: https://github.com/osmcode/libosmium/compare/v1.7.1...v1.8.0
414422
[1.7.1]: https://github.com/osmcode/libosmium/compare/v1.7.0...v1.7.1
415423
[1.7.0]: https://github.com/osmcode/libosmium/compare/v1.6.8...v1.7.0
416424
[1.6.8]: https://github.com/osmcode/libosmium/compare/v1.6.7...v1.6.8

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.7.1 LANGUAGES CXX C)
13+
project(protozero VERSION 1.8.0 LANGUAGES CXX C)
1414

1515
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
1616

include/protozero/version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ documentation.
2020
#define PROTOZERO_VERSION_MAJOR 1
2121

2222
/// The minor version number
23-
#define PROTOZERO_VERSION_MINOR 7
23+
#define PROTOZERO_VERSION_MINOR 8
2424

2525
/// The patch number
26-
#define PROTOZERO_VERSION_PATCH 1
26+
#define PROTOZERO_VERSION_PATCH 0
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.7.1"
32+
#define PROTOZERO_VERSION_STRING "1.8.0"
3333

3434
#endif // PROTOZERO_VERSION_HPP

0 commit comments

Comments
 (0)