Skip to content

Commit 0662dce

Browse files
committed
Release 1.6.3
1 parent da5bfc0 commit 0662dce

File tree

3 files changed

+14
-4
lines changed

3 files changed

+14
-4
lines changed

CHANGELOG.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff 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

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ project(protozero)
1414

1515
set(PROTOZERO_VERSION_MAJOR 1)
1616
set(PROTOZERO_VERSION_MINOR 6)
17-
set(PROTOZERO_VERSION_PATCH 2)
17+
set(PROTOZERO_VERSION_PATCH 3)
1818

1919
set(PROTOZERO_VERSION
2020
"${PROTOZERO_VERSION_MAJOR}.${PROTOZERO_VERSION_MINOR}.${PROTOZERO_VERSION_PATCH}")

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

0 commit comments

Comments
 (0)