Skip to content

Commit 010ffcf

Browse files
committed
Release 1.7.0
1 parent 6ad4929 commit 010ffcf

File tree

4 files changed

+21
-7
lines changed

4 files changed

+21
-7
lines changed

CHANGELOG.md

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,19 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
This project adheres to [Semantic Versioning](http://semver.org/).
77

8-
98
## [unreleased] -
109

1110
### Added
1211

12+
### Changed
13+
14+
### Fixed
15+
16+
17+
## [1.7.0] - 2020-06-08
18+
19+
### Added
20+
1321
- Support for buffer types other that `std::string`. `pbf_writer` is now
1422
just a typedef for `basic_pbf_writer<std::string>`. Other buffer types
1523
can be used with `basic_pbf_writer`. See `doc/advanced.md` for details.
@@ -373,7 +381,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
373381
- Make pbf reader and writer code endianess-aware.
374382

375383

376-
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.6.8...HEAD
384+
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.7.0...HEAD
385+
[1.7.0]: https://github.com/osmcode/libosmium/compare/v1.6.8...v1.7.0
377386
[1.6.8]: https://github.com/osmcode/libosmium/compare/v1.6.7...v1.6.8
378387
[1.6.7]: https://github.com/osmcode/libosmium/compare/v1.6.6...v1.6.7
379388
[1.6.6]: https://github.com/osmcode/libosmium/compare/v1.6.5...v1.6.6

CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
1313
project(protozero)
1414

1515
set(PROTOZERO_VERSION_MAJOR 1)
16-
set(PROTOZERO_VERSION_MINOR 6)
17-
set(PROTOZERO_VERSION_PATCH 8)
16+
set(PROTOZERO_VERSION_MINOR 7)
17+
set(PROTOZERO_VERSION_PATCH 0)
1818

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

UPGRADING.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ macro `PROTOZERO_STRICT_API` in which case Protozero will compile without the
1313
code used for backwards compatibilty. You will then get compile errors for
1414
older API usages.
1515

16+
## Upgrading from *v1.6* to *v1.7*
17+
18+
* The `pbf_writer` class is now a typedef for `basic_pbf_writer<std::string>`
19+
If you have forward declared it in your code, it might have to change.
20+
1621
## Upgrading from *v1.5* to *v1.6.0*
1722

1823
* The `data_view` class moved from `types.hpp` into its own header file

include/protozero/version.hpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,15 +20,15 @@ documentation.
2020
#define PROTOZERO_VERSION_MAJOR 1
2121

2222
/// The minor version number
23-
#define PROTOZERO_VERSION_MINOR 6
23+
#define PROTOZERO_VERSION_MINOR 7
2424

2525
/// The patch number
26-
#define PROTOZERO_VERSION_PATCH 8
26+
#define PROTOZERO_VERSION_PATCH 0
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.8"
32+
#define PROTOZERO_VERSION_STRING "1.7.0"
3333

3434
#endif // PROTOZERO_VERSION_HPP

0 commit comments

Comments
 (0)