From 34fd59653681a2c00ca337b400736d7a4478cd27 Mon Sep 17 00:00:00 2001 From: Pete Gadomski Date: Thu, 30 May 2024 09:12:56 -0600 Subject: [PATCH] release: v0.8.8 --- CHANGELOG.md | 13 ++++++++++++- Cargo.toml | 2 +- 2 files changed, 13 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c9584ae5..8d4cfbe7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,16 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.8.8] - 2024-05-30 + +### Added + +- `Builder::minimum_supported_version` ([#83](https://github.com/gadomski/las-rs/pull/83)) + +### Changed + +- `Reader` now upgrades the las version rather than erroring when a certain feature or format is not supported ([#83](https://github.com/gadomski/las-rs/pull/83)) + ## [0.8.7] - 2024-05-13 ### Fixed @@ -62,7 +72,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Benchmarks now use [criterion](https://github.com/bheisler/criterion.rs) ([#52](https://github.com/gadomski/las-rs/pull/52)) - Edition is now 2021 ([#52](https://github.com/gadomski/las-rs/pull/52)) -[Unreleased]: https://github.com/gadomski/las-rs/compare/v0.8.7...HEAD +[Unreleased]: https://github.com/gadomski/las-rs/compare/v0.8.8...HEAD +[0.8.8]: https://github.com/gadomski/las-rs/releases/compare/v0.8.7...v0.8.8 [0.8.7]: https://github.com/gadomski/las-rs/releases/compare/v0.8.6...v0.8.7 [0.8.6]: https://github.com/gadomski/las-rs/releases/compare/v0.8.5...v0.8.6 [0.8.5]: https://github.com/gadomski/las-rs/releases/compare/v0.8.4...v0.8.5 diff --git a/Cargo.toml b/Cargo.toml index 8e7e2a20..87d54442 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "las" -version = "0.8.7" +version = "0.8.8" authors = ["Pete Gadomski "] description = "Read and write point clouds stored in the ASPRS las file format." documentation = "https://docs.rs/las"