Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions Changelog.python.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Python Icechunk Library 1.1.8

### Features

- Support for `anonymous` access to GCS Storage

## Python Icechunk Library 1.1.7

### Features
Expand Down
4 changes: 2 additions & 2 deletions icechunk-python/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icechunk-python"
version = "1.1.7"
version = "1.1.8"
description = "Transactional storage engine for Zarr designed for use on cloud object storage"
readme = "../README.md"
repository = "https://github.com/earth-mover/icechunk"
Expand All @@ -21,7 +21,7 @@ crate-type = ["cdylib"]
bytes = "1.10.1"
chrono = { version = "0.4.42" }
futures = "0.3.31"
icechunk = { path = "../icechunk", version = "0.3.11", features = ["logs"] }
icechunk = { path = "../icechunk", version = "0.3.12", features = ["logs"] }
itertools = "0.14.0"
pyo3 = { version = "0.24.2", features = [
"chrono",
Expand Down
3 changes: 1 addition & 2 deletions icechunk-python/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,8 +109,7 @@ fn check_filter_for_misspellings(filter: &str) {
})
.for_each(|sanitized| {
eprintln!(
"WARNING: Did you mean 'icechunk' instead of '{}' in log filter?",
sanitized
"WARNING: Did you mean 'icechunk' instead of '{sanitized}' in log filter?"
);
});
}
Expand Down
2 changes: 1 addition & 1 deletion icechunk/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "icechunk"
version = "0.3.11"
version = "0.3.12"
description = "Transactional storage engine for Zarr designed for use on cloud object storage"
readme = "../README.md"
repository = "https://github.com/earth-mover/icechunk"
Expand Down
2 changes: 1 addition & 1 deletion icechunk/src/cli/interface.rs
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ pub async fn run_cli(args: IcechunkCLI) -> Result<()> {
}
Command::Config(ConfigCommand::List) => config_list(&config, stdout()).await,
}
.map_err(|e| anyhow::anyhow!("❌ {}", e))
.map_err(|e| anyhow::anyhow!("❌ {e}"))
}

#[cfg(test)]
Expand Down