Skip to content

Commit

Permalink
Release 1.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
joto committed Apr 12, 2018
1 parent e1aa5d2 commit 2b43c8f
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 3 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,27 @@ This project adheres to [Semantic Versioning](https://semver.org/).
### Fixed


## [1.0.1] - 2018-04-12

### Added

* Some documentation and tests.

### Changed

* Catch exceptions in vtzero-streets example and output error message.
* Adds a template parameter to the `create_property_map` function allowing
mapping between value types.

### Fixed

* The indexes returned by `feature::next_property_indexes()` are now
checked against the size of the key/value tables in the layer. If
an index is too large a `vtzero::out_of_range_exception` is returned.
This way the user code doesn't have to check this. The function
`feature::for_each_property()` now also uses these checks.


## [1.0.0] - 2018-03-09

First release
Expand Down
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 0)
set(VTZERO_VERSION_PATCH 1)

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 0
#define VTZERO_VERSION_PATCH 1

/// 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.0"
#define VTZERO_VERSION_STRING "1.0.1"

#endif // VTZERO_VERSION_HPP

0 comments on commit 2b43c8f

Please sign in to comment.