File tree Expand file tree Collapse file tree 4 files changed +21
-7
lines changed
Expand file tree Collapse file tree 4 files changed +21
-7
lines changed Original file line number Diff line number Diff line change @@ -5,11 +5,19 @@ All notable changes to this project will be documented in this file.
55The format is based on [ Keep a Changelog] ( http://keepachangelog.com/ )
66This 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
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ cmake_minimum_required(VERSION 2.8 FATAL_ERROR)
1313project (protozero)
1414
1515set (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
1919set (PROTOZERO_VERSION
2020 "${PROTOZERO_VERSION_MAJOR} .${PROTOZERO_VERSION_MINOR} .${PROTOZERO_VERSION_PATCH} " )
Original file line number Diff line number Diff line change @@ -13,6 +13,11 @@ macro `PROTOZERO_STRICT_API` in which case Protozero will compile without the
1313code used for backwards compatibilty. You will then get compile errors for
1414older 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
Original file line number Diff line number Diff 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
You can’t perform that action at this time.
0 commit comments