From 4e9e06ae7d3935a80c580cdb53dafb0b88ce9cbd Mon Sep 17 00:00:00 2001 From: Christopher Lee Date: Wed, 17 Nov 2021 11:24:45 -0600 Subject: [PATCH] [RELEASE]: copc-lib v2.1.3 --- CHANGELOG.md | 5 ++++- CMakeLists.txt | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d65f5e9..d8303e19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [2.1.3] - 2021-11-17 + ### Changed - **\[Python/C++\]** Update `CopcFileWriter` constructor to provide optional arguments to update information when using a `CopcConfig` object from a `Reader`. Optional arguments are `scale`, `offset`, `wkt`, `extra_bytes_vlr`, and `has_extended_stats`. @@ -173,10 +175,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 [1.1.0]: https://github.com/RockRobotic/copc-lib/compare/v1.0...v1.1.0 [1.2.0]: https://github.com/RockRobotic/copc-lib/compare/v1.1.0...v1.2.0 +[2.1.3]: https://github.com/RockRobotic/copc-lib/compare/v2.1.2...v2.1.3 [2.1.2]: https://github.com/RockRobotic/copc-lib/compare/v2.1.1...v2.1.2 [2.1.1]: https://github.com/RockRobotic/copc-lib/compare/v2.1.0...v2.1.1 [2.1.0]: https://github.com/RockRobotic/copc-lib/compare/v2.0.0...v2.1.0 [2.0.0]: https://github.com/RockRobotic/copc-lib/compare/v1.3.1...v2.0.0 [1.3.1]: https://github.com/RockRobotic/copc-lib/compare/v1.3.0...v1.3.1 [1.3.0]: https://github.com/RockRobotic/copc-lib/compare/v1.2.0...v1.3.0 -[Unreleased]: https://github.com/RockRobotic/copc-lib/compare/v2.1.2...HEAD +[Unreleased]: https://github.com/RockRobotic/copc-lib/compare/v2.1.3...HEAD diff --git a/CMakeLists.txt b/CMakeLists.txt index 849d2191..5fa9de66 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.15) # ref https://github.com/robotology/how-to-export-cpp-library/blob/master/CMakeLists.txt project(COPCLIB LANGUAGES CXX C - VERSION 2.1.2) + VERSION 2.1.3) # Defines the CMAKE_INSTALL_LIBDIR, CMAKE_INSTALL_BINDIR and many other useful macros. # See https://cmake.org/cmake/help/latest/module/GNUInstallDirs.html diff --git a/setup.py b/setup.py index 157b1214..1ecd614a 100644 --- a/setup.py +++ b/setup.py @@ -120,7 +120,7 @@ def build_extension(self, ext): # logic and declaration, and simpler if you include description/version in a file. setup( name="copclib", - version="2.1.2", + version="2.1.3", author="Rock Robotic Inc.", author_email="support@rockrobotic.com", description="A python interface to Cloud-Optimized Point Clouds (COPC)",