Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,15 @@ This project adheres to [Semantic Versioning](https://semver.org/).

### Added

### Changed

### Fixed


## [1.2.0] - 2025-01-13

### Added

* Add layer raw size and geometries raw size to vtzero-stats, use CSV format.

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


[unreleased]: https://github.com/osmcode/libosmium/compare/v1.1.0...HEAD
[unreleased]: https://github.com/osmcode/libosmium/compare/v1.2.0...HEAD
[1.2.0]: https://github.com/osmcode/libosmium/compare/v1.1.0...v1.2.0
[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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ list(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}/cmake")
project(vtzero)

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

set(VTZERO_VERSION
Expand Down
4 changes: 2 additions & 2 deletions include/vtzero/version.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ documentation.
#define VTZERO_VERSION_MAJOR 1

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

/// The patch number
#define VTZERO_VERSION_PATCH 0
Expand All @@ -31,6 +31,6 @@ documentation.
VTZERO_VERSION_PATCH)

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

#endif // VTZERO_VERSION_HPP
Loading