Skip to content

Commit

Permalink
chore(deps): Bump icechunk to 0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
LDeakin committed Feb 8, 2025
1 parent 13c9753 commit df8b13c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 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
- **Breaking**: Bump `icechunk` to 0.1.2
- This release had a breaking change

## [0.1.0] - 2025-02-01

### Changed
Expand Down
4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "zarrs_icechunk"
version = "0.1.0"
version = "0.1.1"
authors = ["Lachlan Deakin <[email protected]>"]
edition = "2021"
rust-version = "1.81"
Expand All @@ -15,7 +15,7 @@ categories = ["encoding"]
[dependencies]
async-trait = "0.1.74"
futures = "0.3.29"
icechunk = "0.1.0"
icechunk = "0.1.2"
tokio = "1.34.0"
zarrs_storage = { version = "0.3.0", features = ["async"] }

Expand Down
3 changes: 2 additions & 1 deletion doc/version_compatibility_matrix.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
| [zarrs_icechunk] | [icechunk] | [zarrs] ([zarrs_storage]) |
| -------------------- | ---------------- | ------------------------- |
| 0.1.0 | 0.1.0 | 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) |
| 0.1.0-alpha.1 | 0.1.0-alpha.5-7 | 0.18+ (0.3.x) |
Expand Down
5 changes: 4 additions & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,10 @@ fn handle_result_notfound<T>(
match result {
Ok(result) => Ok(Some(result)),
Err(err) => {
if matches!(err, icechunk::store::StoreError::NotFound { .. }) {
if matches!(
err.kind(),
&icechunk::store::StoreErrorKind::NotFound { .. }
) {
Ok(None)
} else {
Err(StorageError::Other(err.to_string()))
Expand Down

0 comments on commit df8b13c

Please sign in to comment.