From 787d7557702bebd5ea1d9747b5d859f7dd1e4f03 Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Thu, 16 Nov 2017 17:48:39 +0100 Subject: [PATCH] Release 1.6.1 --- CHANGELOG.md | 12 +++++++++++- CMakeLists.txt | 2 +- include/protozero/version.hpp | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 02cb1d858..562bc1a8b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Added +### Changed + +### Fixed + + +## [1.6.1] - 2017-11-16 + +### Added + - Document internal handling of varints. - Add aliases for fixed iterators, too. @@ -279,7 +288,8 @@ This project adheres to [Semantic Versioning](http://semver.org/). - Make pbf reader and writer code endianess-aware. -[unreleased]: https://github.com/osmcode/libosmium/compare/v1.6.0...HEAD +[unreleased]: https://github.com/osmcode/libosmium/compare/v1.6.1...HEAD +[1.6.1]: https://github.com/osmcode/libosmium/compare/v1.6.0...v1.6.1 [1.6.0]: https://github.com/osmcode/libosmium/compare/v1.5.3...v1.6.0 [1.5.3]: https://github.com/osmcode/libosmium/compare/v1.5.2...v1.5.3 [1.5.2]: https://github.com/osmcode/libosmium/compare/v1.5.1...v1.5.2 diff --git a/CMakeLists.txt b/CMakeLists.txt index e2f35bd37..9fa22d398 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -14,7 +14,7 @@ project(protozero) set(PROTOZERO_VERSION_MAJOR 1) set(PROTOZERO_VERSION_MINOR 6) -set(PROTOZERO_VERSION_PATCH 0) +set(PROTOZERO_VERSION_PATCH 1) set(PROTOZERO_VERSION "${PROTOZERO_VERSION_MAJOR}.${PROTOZERO_VERSION_MINOR}.${PROTOZERO_VERSION_PATCH}") diff --git a/include/protozero/version.hpp b/include/protozero/version.hpp index a0ab39c65..edf1bf3fb 100644 --- a/include/protozero/version.hpp +++ b/include/protozero/version.hpp @@ -23,12 +23,12 @@ documentation. #define PROTOZERO_VERSION_MINOR 6 /// 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.6.0" +#define PROTOZERO_VERSION_STRING "1.6.1" #endif // PROTOZERO_VERSION_HPP