Skip to content

Commit

Permalink
Prepare 0.7.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Jul 28, 2024
1 parent c93c4c1 commit fe64029
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 5 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -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 <ljdgit@gmail.com>"]
edition = "2021"
rust-version = "1.71"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/cmake_project/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
2 changes: 1 addition & 1 deletion examples/cmake_project/Findzarrs.cmake
Original file line number Diff line number Diff line change
@@ -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

Expand Down

0 comments on commit fe64029

Please sign in to comment.