Skip to content

Commit

Permalink
Prepare 0.8.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Aug 13, 2024
1 parent ee5fe56 commit 40e9946
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 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.8.2] - 2024-08-13

### Added
- Add `zarrsArraySetAttributes`

Expand Down Expand Up @@ -138,7 +140,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.8.1...HEAD
[unreleased]: https://github.com/LDeakin/zarrs_ffi/compare/v0.8.2...HEAD
[0.8.2]: https://github.com/LDeakin/zarrs_ffi/releases/tag/v0.8.2
[0.8.1]: https://github.com/LDeakin/zarrs_ffi/releases/tag/v0.8.1
[0.8.0]: https://github.com/LDeakin/zarrs_ffi/releases/tag/v0.8.0
[0.7.2]: https://github.com/LDeakin/zarrs_ffi/releases/tag/v0.7.2
Expand Down
6 changes: 3 additions & 3 deletions examples/cmake_project/Findzarrs.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ FetchContent_Declare(zarrs_ffi_source
FetchContent_Populate(zarrs_ffi_source)

# Fetch the dependencies at configure time using cargo fetch
get_property(CARGO_EXECUTABLE TARGET Rust::Cargo PROPERTY IMPORTED_LOCATION)
execute_process(COMMAND ${CARGO_EXECUTABLE} fetch WORKING_DIRECTORY ${zarrs_ffi_source_SOURCE_DIR})
# get_property(CARGO_EXECUTABLE TARGET Rust::Cargo PROPERTY IMPORTED_LOCATION)
# execute_process(COMMAND ${CARGO_EXECUTABLE} fetch WORKING_DIRECTORY ${zarrs_ffi_source_SOURCE_DIR})

# Build zarrs_ffi, creates a zarrs_ffi target aliased to zarrs::zarrs
corrosion_import_crate(MANIFEST_PATH ${zarrs_ffi_source_SOURCE_DIR}/Cargo.toml FEATURES ${zarrs_FIND_COMPONENTS} FLAGS --offline)
corrosion_import_crate(MANIFEST_PATH ${zarrs_ffi_source_SOURCE_DIR}/Cargo.toml FEATURES ${zarrs_FIND_COMPONENTS}) # FLAGS --offline
# corrosion_experimental_cbindgen(TARGET zarrs_ffi HEADER_NAME "zarrs.h") # not working

# add zarrs.h to include directories
Expand Down

0 comments on commit 40e9946

Please sign in to comment.