File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed
Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1515### Fixed
1616
1717
18+ ## [ 1.6.3] - 2018-07-17
19+
20+ ### Changed
21+
22+ - Moved ` byteswap_inplace ` functions from detail into protozero namespace.
23+ They can be useful outsize protozero.
24+ - More asserts and unit tests and small cleanups.
25+
26+
1827## [ 1.6.2] - 2018-03-09
1928
2029### Changed
@@ -301,7 +310,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
301310- Make pbf reader and writer code endianess-aware.
302311
303312
304- [ unreleased ] : https://github.com/osmcode/libosmium/compare/v1.6.2...HEAD
313+ [ unreleased ] : https://github.com/osmcode/libosmium/compare/v1.6.3...HEAD
314+ [ 1.6.3 ] : https://github.com/osmcode/libosmium/compare/v1.6.2...v1.6.3
305315[ 1.6.2 ] : https://github.com/osmcode/libosmium/compare/v1.6.1...v1.6.2
306316[ 1.6.1 ] : https://github.com/osmcode/libosmium/compare/v1.6.0...v1.6.1
307317[ 1.6.0 ] : https://github.com/osmcode/libosmium/compare/v1.5.3...v1.6.0
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ project(protozero)
1414
1515set (PROTOZERO_VERSION_MAJOR 1)
1616set (PROTOZERO_VERSION_MINOR 6)
17- set (PROTOZERO_VERSION_PATCH 2 )
17+ set (PROTOZERO_VERSION_PATCH 3 )
1818
1919set (PROTOZERO_VERSION
2020 "${PROTOZERO_VERSION_MAJOR} .${PROTOZERO_VERSION_MINOR} .${PROTOZERO_VERSION_PATCH} " )
Original file line number Diff line number Diff line change @@ -23,12 +23,12 @@ documentation.
2323#define PROTOZERO_VERSION_MINOR 6
2424
2525// / The patch number
26- #define PROTOZERO_VERSION_PATCH 2
26+ #define PROTOZERO_VERSION_PATCH 3
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.6.2 "
32+ #define PROTOZERO_VERSION_STRING " 1.6.3 "
3333
3434#endif // PROTOZERO_VERSION_HPP
You can’t perform that action at this time.
0 commit comments