From effaeeff4ebba35d1a225ed2ee5f4928d75154d2 Mon Sep 17 00:00:00 2001 From: Jochen Topf Date: Mon, 13 Jan 2025 10:50:24 +0100 Subject: [PATCH] Release 1.2.0 --- CHANGELOG.md | 12 +++++++++++- CMakeLists.txt | 2 +- include/vtzero/version.hpp | 4 ++-- 3 files changed, 14 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1f2ef84..f82f01e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 @@ -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 diff --git a/CMakeLists.txt b/CMakeLists.txt index ac0ba92..253a78b 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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 diff --git a/include/vtzero/version.hpp b/include/vtzero/version.hpp index d01cf34..7fdb699 100644 --- a/include/vtzero/version.hpp +++ b/include/vtzero/version.hpp @@ -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 @@ -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