From f379578a3f7c8162aac0ac31c2696de09a5b5f93 Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Mon, 10 Jan 2022 11:02:41 +0100 Subject: [PATCH] Release 1.7.1 --- CHANGELOG.md | 10 +++++++++- CMakeLists.txt | 2 +- include/protozero/version.hpp | 4 ++-- 3 files changed, 12 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ab310946d..35a793c10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,13 @@ This project adheres to [Semantic Versioning](https://semver.org/). ### Changed +### Fixed + + +## [1.7.1] - 2022-01-10 + +### Changed + - Don't build tests if the standard CMake `BUILD_TESTING` variable is set to off. - Now needs CMake 3.5.0 or greater. @@ -392,7 +399,8 @@ This project adheres to [Semantic Versioning](https://semver.org/). - Make pbf reader and writer code endianess-aware. -[unreleased]: https://github.com/osmcode/libosmium/compare/v1.7.0...HEAD +[unreleased]: https://github.com/osmcode/libosmium/compare/v1.7.1...HEAD +[1.7.1]: https://github.com/osmcode/libosmium/compare/v1.7.0...v1.7.1 [1.7.0]: https://github.com/osmcode/libosmium/compare/v1.6.8...v1.7.0 [1.6.8]: https://github.com/osmcode/libosmium/compare/v1.6.7...v1.6.8 [1.6.7]: https://github.com/osmcode/libosmium/compare/v1.6.6...v1.6.7 diff --git a/CMakeLists.txt b/CMakeLists.txt index bb43a0d1e..b975d4901 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -10,7 +10,7 @@ cmake_minimum_required(VERSION 3.5.0 FATAL_ERROR) #----------------------------------------------------------------------------- -project(protozero VERSION 1.7.0 LANGUAGES CXX C) +project(protozero VERSION 1.7.1 LANGUAGES CXX C) set(CMAKE_EXPORT_COMPILE_COMMANDS ON) diff --git a/include/protozero/version.hpp b/include/protozero/version.hpp index 9a0e4cc9f..fc9b92879 100644 --- a/include/protozero/version.hpp +++ b/include/protozero/version.hpp @@ -23,12 +23,12 @@ documentation. #define PROTOZERO_VERSION_MINOR 7 /// The patch number -#define PROTOZERO_VERSION_PATCH 0 +#define PROTOZERO_VERSION_PATCH 1 /// The complete version number #define PROTOZERO_VERSION_CODE (PROTOZERO_VERSION_MAJOR * 10000 + PROTOZERO_VERSION_MINOR * 100 + PROTOZERO_VERSION_PATCH) /// Version number as string -#define PROTOZERO_VERSION_STRING "1.7.0" +#define PROTOZERO_VERSION_STRING "1.7.1" #endif // PROTOZERO_VERSION_HPP