File tree Expand file tree Collapse file tree 3 files changed +12
-4
lines changed
Expand file tree Collapse file tree 3 files changed +12
-4
lines changed Original file line number Diff line number Diff 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.7.1] - 2022-01-10
18+
19+ ### Changed
20+
1421- Don't build tests if the standard CMake ` BUILD_TESTING ` variable is set to
1522 off.
1623- Now needs CMake 3.5.0 or greater.
@@ -392,7 +399,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
392399- Make pbf reader and writer code endianess-aware.
393400
394401
395- [ unreleased ] : https://github.com/osmcode/libosmium/compare/v1.7.0...HEAD
402+ [ unreleased ] : https://github.com/osmcode/libosmium/compare/v1.7.1...HEAD
403+ [ 1.7.1 ] : https://github.com/osmcode/libosmium/compare/v1.7.0...v1.7.1
396404[ 1.7.0 ] : https://github.com/osmcode/libosmium/compare/v1.6.8...v1.7.0
397405[ 1.6.8 ] : https://github.com/osmcode/libosmium/compare/v1.6.7...v1.6.8
398406[ 1.6.7 ] : https://github.com/osmcode/libosmium/compare/v1.6.6...v1.6.7
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ cmake_minimum_required(VERSION 3.5.0 FATAL_ERROR)
1010
1111#-----------------------------------------------------------------------------
1212
13- project (protozero VERSION 1.7.0 LANGUAGES CXX C)
13+ project (protozero VERSION 1.7.1 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 7
2424
2525// / The patch number
26- #define PROTOZERO_VERSION_PATCH 0
26+ #define PROTOZERO_VERSION_PATCH 1
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.0 "
32+ #define PROTOZERO_VERSION_STRING " 1.7.1 "
3333
3434#endif // PROTOZERO_VERSION_HPP
You can’t perform that action at this time.
0 commit comments