diff --git a/Cargo.toml b/Cargo.toml index f8c3189..42cabd3 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -30,7 +30,7 @@ version = "0.2.0" path = "zarrs_metadata" [workspace.dependencies.zarrs_storage] -version = "0.3.0-dev" +version = "0.3.0" path = "zarrs_storage" [workspace.dependencies.zarrs_filesystem] diff --git a/zarrs_storage/CHANGELOG.md b/zarrs_storage/CHANGELOG.md index ad116f0..830325a 100644 --- a/zarrs_storage/CHANGELOG.md +++ b/zarrs_storage/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +## [0.3.0] - 2024-11-15 + ### Added - Add `ByteRange::new` and `From` for `RangeBounds` - Add `PerformanceMetricsStorageAdapter::{keys_erased,reset}()` @@ -67,7 +69,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Initial release - Split from the `storage` module of `zarrs` 0.17.0-dev -[unreleased]: https://github.com/LDeakin/zarrs/compare/zarrs_storage-v0.2.2...HEAD +[unreleased]: https://github.com/LDeakin/zarrs/compare/zarrs_storage-v0.3.0...HEAD +[0.3.0]: https://github.com/LDeakin/zarrs/releases/tag/zarrs_storage-v0.3.0 [0.2.2]: https://github.com/LDeakin/zarrs/releases/tag/zarrs_storage-v0.2.2 [0.2.1]: https://github.com/LDeakin/zarrs/releases/tag/zarrs_storage-v0.2.1 [0.2.0]: https://github.com/LDeakin/zarrs/releases/tag/zarrs_storage-v0.2.0 diff --git a/zarrs_storage/Cargo.toml b/zarrs_storage/Cargo.toml index a396ee1..7d69eba 100644 --- a/zarrs_storage/Cargo.toml +++ b/zarrs_storage/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "zarrs_storage" -version = "0.3.0-dev" +version = "0.3.0" authors = ["Lachlan Deakin "] edition = "2021" rust-version = "1.77"