Skip to content

Commit

Permalink
chore(deps): add icechunk 0.1.3 dev-dependency for tests
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Feb 11, 2025
1 parent 2bec6eb commit 7c47f60
Show file tree
Hide file tree
Showing 6 changed files with 11 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -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)
Expand Down
2 changes: 1 addition & 1 deletion doc/version_compatibility_matrix.md
Original file line number Diff line number Diff line change
@@ -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) |
Expand Down
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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?;
//!
Expand Down Expand Up @@ -330,7 +330,7 @@ mod tests {
#[tokio::test]
#[ignore]
async fn icechunk() -> Result<(), Box<dyn Error>> {
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?);
Expand All @@ -344,7 +344,7 @@ mod tests {

#[tokio::test]
async fn icechunk_time_travel() -> Result<(), Box<dyn Error>> {
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?;

Expand Down
2 changes: 1 addition & 1 deletion tests/array.rs
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ use zarrs_icechunk::AsyncIcechunkStore;

#[tokio::test]
async fn icechunk_array() -> Result<(), Box<dyn std::error::Error>> {
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?;

Expand Down

0 comments on commit 7c47f60

Please sign in to comment.