Skip to content

Commit

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

### Fixed


## [1.0.2] - 2018-06-26

### Fixed

* `layer_builder::add_feature()` did not work, because it didn't commit
the features it added.

Expand Down Expand Up @@ -43,6 +48,7 @@ This project adheres to [Semantic Versioning](https://semver.org/).
First release


[unreleased]: https://github.com/osmcode/libosmium/compare/v1.0.1...HEAD
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.0.2...HEAD
[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

2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ project(vtzero)

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

set(VTZERO_VERSION
"${VTZERO_VERSION_MAJOR}.${VTZERO_VERSION_MINOR}.${VTZERO_VERSION_PATCH}")
Expand Down
4 changes: 2 additions & 2 deletions include/vtzero/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ documentation.
#define VTZERO_VERSION_MINOR 0

/// The patch number
#define VTZERO_VERSION_PATCH 1
#define VTZERO_VERSION_PATCH 2

/// 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.1"
#define VTZERO_VERSION_STRING "1.0.2"

#endif // VTZERO_VERSION_HPP

0 comments on commit 3484299

Please sign in to comment.