Skip to content

Commit 3ef46ba

Browse files
committed
Release 1.6.4
1 parent 3a1ef01 commit 3ef46ba

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
@@ -10,6 +10,15 @@ This project adheres to [Semantic Versioning](http://semver.org/).
1010

1111
### Added
1212

13+
### Changed
14+
15+
### Fixed
16+
17+
18+
## [1.6.4] - 2018-11-08
19+
20+
### Added
21+
1322
- Add function `data()` to get the not yet read data from a `pbf_reader`.
1423
- New `add_packed_fixed()` template function for `pbf_writer`.
1524
- New `length_of_varint()` helper function calculates how long a varint
@@ -322,7 +331,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
322331
- Make pbf reader and writer code endianess-aware.
323332

324333

325-
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.6.3...HEAD
334+
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.6.4...HEAD
335+
[1.6.4]: https://github.com/osmcode/libosmium/compare/v1.6.3...v1.6.4
326336
[1.6.3]: https://github.com/osmcode/libosmium/compare/v1.6.2...v1.6.3
327337
[1.6.2]: https://github.com/osmcode/libosmium/compare/v1.6.1...v1.6.2
328338
[1.6.1]: https://github.com/osmcode/libosmium/compare/v1.6.0...v1.6.1

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 3)
17+
set(PROTOZERO_VERSION_PATCH 4)
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 3
26+
#define PROTOZERO_VERSION_PATCH 4
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.3"
32+
#define PROTOZERO_VERSION_STRING "1.6.4"
3333

3434
#endif // PROTOZERO_VERSION_HPP

0 commit comments

Comments
 (0)