Skip to content

Commit

Permalink
zarrs_opendal: prepare 0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Feb 24, 2025
1 parent 5c2077e commit 40485ca
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 7 deletions.
5 changes: 4 additions & 1 deletion zarrs_opendal/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.6.0] - 2025-02-24

### Changed
- **Breaking**: Bump `opendal` supported range to 0.51-0.52

Expand Down Expand Up @@ -48,7 +50,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_opendal-v0.5.0...HEAD
[unreleased]: https://github.com/LDeakin/zarrs/compare/zarrs_opendal-v0.6.0...HEAD
[0.6.0]: https://github.com/LDeakin/zarrs/releases/tag/zarrs_opendal-v0.6.0
[0.5.0]: https://github.com/LDeakin/zarrs/releases/tag/zarrs_opendal-v0.5.0
[0.4.0]: https://github.com/LDeakin/zarrs/releases/tag/zarrs_opendal-v0.4.0
[0.3.1]: https://github.com/LDeakin/zarrs/releases/tag/zarrs_opendal-v0.3.1
Expand Down
6 changes: 3 additions & 3 deletions zarrs_opendal/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# zarrs_opendal

[![Latest Version](https://img.shields.io/crates/v/zarrs_opendal.svg)](https://crates.io/crates/zarrs_opendal)
[![opendal 0.51](https://img.shields.io/badge/opendal-0.51-blue)](https://crates.io/crates/opendal)
[![opendal 0.52](https://img.shields.io/badge/opendal-0.52-blue)](https://crates.io/crates/opendal)
[![zarrs_opendal documentation](https://docs.rs/zarrs_opendal/badge.svg)](https://docs.rs/zarrs_opendal)
![msrv](https://img.shields.io/crates/msrv/zarrs_opendal)
[![build](https://github.com/LDeakin/zarrs/actions/workflows/ci.yml/badge.svg)](https://github.com/LDeakin/zarrs/actions/workflows/ci.yml)
Expand All @@ -25,9 +25,9 @@ See [doc/version_compatibility_matrix.md](./doc/version_compatibility_matrix.md)
However, if `opendal` is a direct dependency, it is necessary to ensure that the version used by this crate is compatible.
This crate can depend on a range of semver-incompatible versions of `opendal`, and Cargo will not automatically choose a single version of `opendal` that satisfies all dependencies.
Use a precise cargo update to ensure compatibility.
For example, if this crate resolves to `opendal` 0.50.2 and your code uses 0.49.2:
For example, if this crate resolves to `opendal` 0.52.0 and your code uses 0.51.0:
```shell
cargo update --package opendal:0.50.2 --precise 0.49.2
cargo update --package opendal:0.52.0 --precise 0.51.0
```

## Licence
Expand Down
7 changes: 4 additions & 3 deletions zarrs_opendal/doc/version_compatibility_matrix.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
| [zarrs_opendal] | [opendal] | [zarrs] ([zarrs_storage]) |
| --------------- | --------- | ------------------------- |
| 0.5 | 0.51-0.51 | 0.18.x (0.3.x) |
| 0.4 | 0.46-0.50 | 0.18.x (0.3.x) |
| 0.3 | 0.46-0.50 | 0.17.x (0.2.x) |
| 0.6 | 0.51-0.52 | 0.18+ (0.3.x) |
| 0.5 | 0.51-0.51 | 0.18+ (0.3.x) |
| 0.4 | 0.46-0.50 | 0.18+ (0.3.x) |
| 0.3 | 0.46-0.50 | 0.17 (0.2.x) |

[zarrs_opendal]: https://crates.io/crates/zarrs_opendal
[opendal]: https://crates.io/crates/opendal
Expand Down

0 comments on commit 40485ca

Please sign in to comment.