Skip to content

Commit 808a7b6

Browse files
committed
Release 1.0.3
1 parent d4faa2f commit 808a7b6

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 19 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,23 @@ This project adheres to [Semantic Versioning](https://semver.org/).
1414
### Fixed
1515

1616

17+
## [1.0.3] - 2018-07-17
18+
19+
### Added
20+
21+
* New `copy_id()` helper function on feature builder copies ID (if it exists)
22+
from an existing feature.
23+
* New `copy_properties()` helper funtion on feature builder copies all
24+
properties from an existing feature, optionally using a `property_mapper`.
25+
* New `feature::for_each_property_indexes()` member function.
26+
27+
### Fixed
28+
29+
* The example program `vtzero-stats` now catches exceptions and exists with
30+
an error message.
31+
* Fix an assert where a wrong iterator was checked.
32+
33+
1734
## [1.0.2] - 2018-06-26
1835

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

5067

51-
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.0.2...HEAD
68+
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.0.3...HEAD
69+
[1.0.3]: https://github.com/osmcode/libosmium/compare/v1.0.2...v1.0.3
5270
[1.0.2]: https://github.com/osmcode/libosmium/compare/v1.0.1...v1.0.2
5371
[1.0.1]: https://github.com/osmcode/libosmium/compare/v1.0.0...v1.0.1
5472

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ project(vtzero)
1616

1717
set(VTZERO_VERSION_MAJOR 1)
1818
set(VTZERO_VERSION_MINOR 0)
19-
set(VTZERO_VERSION_PATCH 2)
19+
set(VTZERO_VERSION_PATCH 3)
2020

2121
set(VTZERO_VERSION
2222
"${VTZERO_VERSION_MAJOR}.${VTZERO_VERSION_MINOR}.${VTZERO_VERSION_PATCH}")

include/vtzero/version.hpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ documentation.
2323
#define VTZERO_VERSION_MINOR 0
2424

2525
/// The patch number
26-
#define VTZERO_VERSION_PATCH 2
26+
#define VTZERO_VERSION_PATCH 3
2727

2828
/// The complete version number
2929
#define VTZERO_VERSION_CODE \
3030
(VTZERO_VERSION_MAJOR * 10000 + VTZERO_VERSION_MINOR * 100 + \
3131
VTZERO_VERSION_PATCH)
3232

3333
/// Version number as string
34-
#define VTZERO_VERSION_STRING "1.0.2"
34+
#define VTZERO_VERSION_STRING "1.0.3"
3535

3636
#endif // VTZERO_VERSION_HPP

0 commit comments

Comments
 (0)