From 09d6aac2c412af9b5283a345a6f171d6c8ea4ca6 Mon Sep 17 00:00:00 2001 From: Lachlan Deakin Date: Thu, 28 Nov 2024 13:34:21 +1100 Subject: [PATCH] Bump `zfp-sys` to 0.3.0 --- CHANGELOG.md | 3 +++ zarrs/Cargo.toml | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4040a774..88547b34 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed +- Bump `zfp-sys` to 0.3.0 + ## [0.18.0] - 2024-11-23 ### Announcements diff --git a/zarrs/Cargo.toml b/zarrs/Cargo.toml index 798ace63..c8da9a93 100644 --- a/zarrs/Cargo.toml +++ b/zarrs/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zarrs" -version = "0.18.0" +version = "0.18.1" authors = ["Lachlan Deakin "] edition = "2021" rust-version = "1.77" @@ -69,7 +69,7 @@ unsafe_cell_slice = "0.2.0" zarrs_filesystem = { workspace = true, optional = true } zarrs_metadata = { workspace = true } zarrs_storage = { workspace = true } -zfp-sys = {version = "0.2.0", features = ["static"], optional = true } +zfp-sys = {version = "0.3.0", features = ["static"], optional = true } zstd = { version = "0.13.1", features = ["zstdmt"], optional = true } [dependencies.num-complex]