diff --git a/CHANGELOG.md b/CHANGELOG.md index 07d3e28..ff4ec92 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,16 @@ All notable changes to this project will be documented in this file. +## [0.6.1](https://github.com/nivalis-studio/e57-to-las/compare/v0.6.0..v0.6.1) - 2024-08-28 + +### ⛰️ Features + +- Update crate e57 - ([e8cd453](https://github.com/nivalis-studio/e57-to-las/commit/e8cd453149d5a2c9a9f4533c5bf18a254983682b)) + +### ⚙️ Miscellaneous Tasks + +- Update changelog - ([1fd1570](https://github.com/nivalis-studio/e57-to-las/commit/1fd1570b71419402c69643e23dd20e2300999e3c)) + ## [0.6.0](https://github.com/nivalis-studio/e57-to-las/compare/v0.5.0..v0.6.0) - 2024-08-26 ### 🐛 Bug Fixes diff --git a/Cargo.lock b/Cargo.lock index cfd5c74..cc96b64 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -194,16 +194,16 @@ checksum = "248e3bacc7dc6baa3b21e405ee045c3047101a49145e7e9eca583ab4c2ca5345" [[package]] name = "e57" -version = "0.11.4" +version = "0.11.5" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "6ef9eb8f01019f56f9efc0459eb39945568defad5db84b1174e79f0212bf317b" +checksum = "6a5df90a33a8b259c2fc0a86374549b2bdd8e4aa5ca8ec87c3ca80e41ecfc2f0" dependencies = [ "roxmltree", ] [[package]] name = "e57-to-las" -version = "0.6.0" +version = "0.6.1" dependencies = [ "anyhow", "clap", diff --git a/Cargo.toml b/Cargo.toml index c3fb1f3..e7cc590 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "e57-to-las" description = "Convert E57 point cloud files to LAS" -version = "0.6.0" +version = "0.6.1" readme = "README.md" license = "MIT" edition = "2021" @@ -17,7 +17,7 @@ exclude = ["/examples"] [dependencies] anyhow = "1.0.86" clap = { version = "4.5.7", features = ["derive"] } -e57 = "0.11.4" +e57 = "0.11.5" serde_json = { version = "1.0.117" } serde = { version = "1.0.203", features = ["derive"] } las = "0.9.1" diff --git a/README.md b/README.md index aac226a..cc63f8e 100644 --- a/README.md +++ b/README.md @@ -28,7 +28,7 @@ To use this as a crate in your own project, add the following to your `Cargo.tom ```toml [dependencies] -e57-to-las = "0.6.0" +e57-to-las = "0.6.1" ``` You can then use it in your code as follows: