diff --git a/CHANGELOG.md b/CHANGELOG.md index faa3ebf..a58d381 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] +## [0.7.1] - 2024-07-28 + ### Changed - Bump `zarrs` to 0.16.0 @@ -102,7 +104,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Added - Initial public release -[unreleased]: https://github.com/LDeakin/zarrs_ffi/compare/v0.7.0...HEAD +[unreleased]: https://github.com/LDeakin/zarrs_ffi/compare/v0.7.1...HEAD +[0.7.1]: https://github.com/LDeakin/zarrs_ffi/releases/tag/v0.7.1 [0.7.0]: https://github.com/LDeakin/zarrs_ffi/releases/tag/v0.7.0 [0.6.2]: https://github.com/LDeakin/zarrs_ffi/releases/tag/v0.6.2 [0.6.1]: https://github.com/LDeakin/zarrs_ffi/releases/tag/v0.6.1 diff --git a/Cargo.toml b/Cargo.toml index fb6e239..869d243 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,7 +1,7 @@ [package] name = "zarrs_ffi" description = "FFI bindings for the zarrs crate" -version = "0.7.0" +version = "0.7.1" authors = ["Lachlan Deakin "] edition = "2021" rust-version = "1.71" diff --git a/README.md b/README.md index 4c35358..fb06a69 100644 --- a/README.md +++ b/README.md @@ -15,7 +15,7 @@ Example usage can be found in the [examples](https://github.com/LDeakin/zarrs_ff ## CMake Quickstart 1. Install the rust compiler (and cargo). 2. Put [Findzarrs.cmake](https://github.com/LDeakin/zarrs_ffi/blob/main/examples/cmake_project/Findzarrs.cmake) in your `CMAKE_MODULE_PATH` -3. `find_package(zarrs 0.6 REQUIRED COMPONENTS zarrs/bz2)` +3. `find_package(zarrs 0.7 REQUIRED COMPONENTS zarrs/bz2)` - `zarrs` is retrieved from `GitHub` using [FetchContent](https://cmake.org/cmake/help/latest/module/FetchContent.html) and built using [corrosion](https://github.com/corrosion-rs/corrosion) - Components are optional zarrs codecs 4. the `zarrs` FFI library is available as the `zarrs::zarrs` target diff --git a/examples/cmake_project/CMakeLists.txt b/examples/cmake_project/CMakeLists.txt index 10ef32b..927f57e 100644 --- a/examples/cmake_project/CMakeLists.txt +++ b/examples/cmake_project/CMakeLists.txt @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.19) project(zarrs_ffi_cmake VERSION 0.1.0) LIST(APPEND CMAKE_MODULE_PATH "${CMAKE_SOURCE_DIR}") -find_package(zarrs 0.6 REQUIRED COMPONENTS zarrs/bz2) +find_package(zarrs 0.7 REQUIRED COMPONENTS zarrs/bz2) add_executable(main ../array_write_read.cpp) target_link_libraries(main zarrs::zarrs) diff --git a/examples/cmake_project/Findzarrs.cmake b/examples/cmake_project/Findzarrs.cmake index 91e389e..b1883a6 100644 --- a/examples/cmake_project/Findzarrs.cmake +++ b/examples/cmake_project/Findzarrs.cmake @@ -1,7 +1,7 @@ include(FetchContent) # Example Usage -# find_package(zarrs 0.6 REQUIRED COMPONENTS zarrs/bz2) +# find_package(zarrs 0.7 REQUIRED COMPONENTS zarrs/bz2) # Components are zarrs optional codecs, such as: # zarrs/bitround zarrs/zfp zarrs/bz2 zarrs/pcodec