Skip to content

Commit

Permalink
chore(zarrs_opendal): bump maximum supported opendal to 0.51
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Dec 23, 2024
1 parent 9a4c540 commit 3a1acdd
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ version = "0.3.0"
path = "zarrs_object_store"

[workspace.dependencies.zarrs_opendal]
version = "0.4.0"
version = "0.5.0"
path = "zarrs_opendal"

[workspace.dependencies.zarrs_zip]
Expand All @@ -58,7 +58,7 @@ path = "zarrs_zip"
version = "0.11"

[workspace.dependencies.opendal]
version = "0.50.0"
version = "0.51.0"

[workspace.dependencies.zip]
version = "2.1.3"
4 changes: 2 additions & 2 deletions zarrs_opendal/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zarrs_opendal"
version = "0.4.0"
version = "0.5.0"
authors = ["Lachlan Deakin <[email protected]>"]
edition = "2021"
rust-version = "1.77"
Expand All @@ -18,7 +18,7 @@ workspace = true
[dependencies]
async-trait = "0.1.74"
futures = "0.3.29"
opendal = { version = ">=0.46,<0.51", default-features = false }
opendal = { version = ">=0.46,<0.52", default-features = false }
zarrs_storage = { workspace = true, features = ["async"] }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion 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.50](https://img.shields.io/badge/opendal-0.50-blue)](https://crates.io/crates/opendal)
[![opendal 0.51](https://img.shields.io/badge/opendal-0.51-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 Down
5 changes: 3 additions & 2 deletions zarrs_opendal/doc/version_compatibility_matrix.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
| [zarrs_opendal] | [opendal] | [zarrs] ([zarrs_storage]) |
| --------------- | --------- | ------------------------- |
| 0.3 | 0.46-0.50 | 0.17 (0.2.0) |
| 0.4 | 0.46-0.50 | 0.18 (0.3.0) |
| 0.5 | 0.46-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) |

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

0 comments on commit 3a1acdd

Please sign in to comment.