From 0662dcecc7ff91055cac800b80d7fd282115a552 Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Tue, 17 Jul 2018 11:30:10 +0200 Subject: [PATCH] Release 1.6.3 --- 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 d43f422b6..9a62b8f5c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -15,6 +15,15 @@ This project adheres to [Semantic Versioning](http://semver.org/). ### Fixed +## [1.6.3] - 2018-07-17 + +### Changed + +- Moved `byteswap_inplace` functions from detail into protozero namespace. + They can be useful outsize protozero. +- More asserts and unit tests and small cleanups. + + ## [1.6.2] - 2018-03-09 ### Changed @@ -301,7 +310,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.2...HEAD +[unreleased]: https://github.com/osmcode/libosmium/compare/v1.6.3...HEAD +[1.6.3]: https://github.com/osmcode/libosmium/compare/v1.6.2...v1.6.3 [1.6.2]: https://github.com/osmcode/libosmium/compare/v1.6.1...v1.6.2 [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 diff --git a/CMakeLists.txt b/CMakeLists.txt index 24e293d73..00abb87da 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 2) +set(PROTOZERO_VERSION_PATCH 3) 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 32a494f4b..c44ed41e6 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 2 +#define PROTOZERO_VERSION_PATCH 3 /// 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.2" +#define PROTOZERO_VERSION_STRING "1.6.3" #endif // PROTOZERO_VERSION_HPP