Skip to content

Commit

Permalink
Release 1.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Jun 11, 2020
1 parent 6defc33 commit cf89d56
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 6 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,13 @@ This project adheres to [Semantic Versioning](https://semver.org/).

### Changed

### Fixed


## [1.1.0] - 2020-06-11

### Changed

* Now needs protozero 1.7.0 or above.
* Use `protozero::basic_pbf_builder` to make buffer type configurable. This
allows you to create the final vector tile in any type of buffer, not just
Expand Down Expand Up @@ -74,7 +81,8 @@ This project adheres to [Semantic Versioning](https://semver.org/).
First release


[unreleased]: https://github.com/osmcode/libosmium/compare/v1.0.3...HEAD
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.1.0...HEAD
[1.1.0]: https://github.com/osmcode/libosmium/compare/v1.0.3...v1.1.0
[1.0.3]: https://github.com/osmcode/libosmium/compare/v1.0.2...v1.0.3
[1.0.2]: https://github.com/osmcode/libosmium/compare/v1.0.1...v1.0.2
[1.0.1]: https://github.com/osmcode/libosmium/compare/v1.0.0...v1.0.1
Expand Down
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
project(vtzero)

set(VTZERO_VERSION_MAJOR 1)
set(VTZERO_VERSION_MINOR 0)
set(VTZERO_VERSION_PATCH 3)
set(VTZERO_VERSION_MINOR 1)
set(VTZERO_VERSION_PATCH 0)

set(VTZERO_VERSION
"${VTZERO_VERSION_MAJOR}.${VTZERO_VERSION_MINOR}.${VTZERO_VERSION_PATCH}")
Expand Down
6 changes: 3 additions & 3 deletions include/vtzero/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,17 +20,17 @@ documentation.
#define VTZERO_VERSION_MAJOR 1

/// The minor version number
#define VTZERO_VERSION_MINOR 0
#define VTZERO_VERSION_MINOR 1

/// The patch number
#define VTZERO_VERSION_PATCH 3
#define VTZERO_VERSION_PATCH 0

/// The complete version number
#define VTZERO_VERSION_CODE \
(VTZERO_VERSION_MAJOR * 10000 + VTZERO_VERSION_MINOR * 100 + \
VTZERO_VERSION_PATCH)

/// Version number as string
#define VTZERO_VERSION_STRING "1.0.3"
#define VTZERO_VERSION_STRING "1.1.0"

#endif // VTZERO_VERSION_HPP

0 comments on commit cf89d56

Please sign in to comment.