From 7c47f60d7dff9f1092daf0f77a466a187ec1b753 Mon Sep 17 00:00:00 2001 From: Lachlan Deakin Date: Wed, 12 Feb 2025 08:26:46 +1100 Subject: [PATCH] chore(deps): add `icechunk` 0.1.3 dev-dependency for tests --- CHANGELOG.md | 4 ++++ Cargo.toml | 1 + README.md | 2 +- doc/version_compatibility_matrix.md | 2 +- src/lib.rs | 6 +++--- tests/array.rs | 2 +- 6 files changed, 11 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8fcb01c..2b371d5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased] +### Changed +- Add `icechunk` 0.1.3 dev-dependency for tests + - This release had a breaking change + ## [0.1.1] - 2025-02-08 ### Changed diff --git a/Cargo.toml b/Cargo.toml index a8c9045..079806a 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,6 +20,7 @@ tokio = "1.34.0" zarrs_storage = { version = "0.3.0", features = ["async"] } [dev-dependencies] +icechunk = "0.1.3" tempfile = "3" tokio = { version = "1.34.0", features = ["macros", "rt-multi-thread"] } tokio-test = "0.4.4" diff --git a/README.md b/README.md index d8892b7..99fa623 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # zarrs_icechunk [![Latest Version](https://img.shields.io/crates/v/zarrs_icechunk.svg)](https://crates.io/crates/zarrs_icechunk) -[![icechunk 0.1.2](https://img.shields.io/badge/icechunk-0.1.2-blue)](https://crates.io/crates/icechunk) +[![icechunk 0.1.2](https://img.shields.io/badge/icechunk-0.1.2+-blue)](https://crates.io/crates/icechunk) [![zarrs_icechunk documentation](https://docs.rs/zarrs_icechunk/badge.svg)](https://docs.rs/zarrs_icechunk) ![msrv](https://img.shields.io/crates/msrv/zarrs_icechunk) [![build](https://github.com/LDeakin/zarrs_icechunk/actions/workflows/ci.yml/badge.svg)](https://github.com/LDeakin/zarrs_icechunk/actions/workflows/ci.yml) diff --git a/doc/version_compatibility_matrix.md b/doc/version_compatibility_matrix.md index 4702121..e8d2eb8 100644 --- a/doc/version_compatibility_matrix.md +++ b/doc/version_compatibility_matrix.md @@ -1,6 +1,6 @@ | [zarrs_icechunk] | [icechunk] | [zarrs] ([zarrs_storage]) | | -------------------- | ---------------- | ------------------------- | -| 0.1.1 | 0.1.2 | 0.18+ (0.3.x) | +| 0.1.1+ | 0.1.2+ | 0.18+ (0.3.x) | | 0.1.0 | 0.1.0-0.1.1 | 0.18+ (0.3.x) | | 0.1.0-alpha.3 | 0.1.0-alpha.13- | 0.18+ (0.3.x) | | 0.1.0-alpha.2 | 0.1.0-alpha.8-12 | 0.18+ (0.3.x) | diff --git a/src/lib.rs b/src/lib.rs index 43ee59e..0ab9e64 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -9,7 +9,7 @@ //! use zarrs_icechunk::AsyncIcechunkStore; //! # tokio_test::block_on(async { //! // Create an icechunk repository -//! let storage = icechunk::new_in_memory_storage()?; +//! let storage = icechunk::new_in_memory_storage().await?; //! let config = RepositoryConfig::default(); //! let repo = Repository::create(Some(config), storage, HashMap::new()).await?; //! @@ -330,7 +330,7 @@ mod tests { #[tokio::test] #[ignore] async fn icechunk() -> Result<(), Box> { - let storage = icechunk::new_in_memory_storage()?; + let storage = icechunk::new_in_memory_storage().await?; let config = RepositoryConfig::default(); let repo = Repository::create(Some(config), storage, HashMap::new()).await?; let store = AsyncIcechunkStore::new(repo.writable_session("main").await?); @@ -344,7 +344,7 @@ mod tests { #[tokio::test] async fn icechunk_time_travel() -> Result<(), Box> { - let storage = icechunk::new_in_memory_storage()?; + let storage = icechunk::new_in_memory_storage().await?; let config = RepositoryConfig::default(); let repo = Repository::create(Some(config), storage, HashMap::new()).await?; diff --git a/tests/array.rs b/tests/array.rs index df48363..c3a4cef 100644 --- a/tests/array.rs +++ b/tests/array.rs @@ -9,7 +9,7 @@ use zarrs_icechunk::AsyncIcechunkStore; #[tokio::test] async fn icechunk_array() -> Result<(), Box> { - let storage = icechunk::new_in_memory_storage()?; + let storage = icechunk::new_in_memory_storage().await?; let config = RepositoryConfig::default(); let repo = Repository::create(Some(config), storage, HashMap::new()).await?;