Skip to content

Commit f379578

Browse files
committed
Release 1.7.1
1 parent 040947b commit f379578

File tree

3 files changed

+12
-4
lines changed

3 files changed

+12
-4
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.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

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.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

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 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

0 commit comments

Comments
 (0)