Skip to content

Commit

Permalink
Release 1.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Jul 17, 2018
1 parent d4faa2f commit 808a7b6
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 4 deletions.
20 changes: 19 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,23 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Fixed


## [1.0.3] - 2018-07-17

### Added

* New `copy_id()` helper function on feature builder copies ID (if it exists)
from an existing feature.
* New `copy_properties()` helper funtion on feature builder copies all
properties from an existing feature, optionally using a `property_mapper`.
* New `feature::for_each_property_indexes()` member function.

### Fixed

* The example program `vtzero-stats` now catches exceptions and exists with
an error message.
* Fix an assert where a wrong iterator was checked.


## [1.0.2] - 2018-06-26

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


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

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 2)
set(VTZERO_VERSION_PATCH 3)

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 2
#define VTZERO_VERSION_PATCH 3

/// 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.2"
#define VTZERO_VERSION_STRING "1.0.3"

#endif // VTZERO_VERSION_HPP

0 comments on commit 808a7b6

Please sign in to comment.