Skip to content

Commit ffb3ac3

Browse files
authored
Release + formatting (#1279)
1 parent fcd1c97 commit ffb3ac3

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Changelog.python.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Python Icechunk Library 1.1.8
4+
5+
### Features
6+
7+
- Support for `anonymous` access to GCS Storage
8+
39
## Python Icechunk Library 1.1.7
410

511
### Features

icechunk-python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icechunk-python"
3-
version = "1.1.7"
3+
version = "1.1.8"
44
description = "Transactional storage engine for Zarr designed for use on cloud object storage"
55
readme = "../README.md"
66
repository = "https://github.com/earth-mover/icechunk"
@@ -21,7 +21,7 @@ crate-type = ["cdylib"]
2121
bytes = "1.10.1"
2222
chrono = { version = "0.4.42" }
2323
futures = "0.3.31"
24-
icechunk = { path = "../icechunk", version = "0.3.11", features = ["logs"] }
24+
icechunk = { path = "../icechunk", version = "0.3.12", features = ["logs"] }
2525
itertools = "0.14.0"
2626
pyo3 = { version = "0.24.2", features = [
2727
"chrono",

icechunk-python/src/lib.rs

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -109,8 +109,7 @@ fn check_filter_for_misspellings(filter: &str) {
109109
})
110110
.for_each(|sanitized| {
111111
eprintln!(
112-
"WARNING: Did you mean 'icechunk' instead of '{}' in log filter?",
113-
sanitized
112+
"WARNING: Did you mean 'icechunk' instead of '{sanitized}' in log filter?"
114113
);
115114
});
116115
}

icechunk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icechunk"
3-
version = "0.3.11"
3+
version = "0.3.12"
44
description = "Transactional storage engine for Zarr designed for use on cloud object storage"
55
readme = "../README.md"
66
repository = "https://github.com/earth-mover/icechunk"

icechunk/src/cli/interface.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ pub async fn run_cli(args: IcechunkCLI) -> Result<()> {
434434
}
435435
Command::Config(ConfigCommand::List) => config_list(&config, stdout()).await,
436436
}
437-
.map_err(|e| anyhow::anyhow!("❌ {}", e))
437+
.map_err(|e| anyhow::anyhow!("❌ {e}"))
438438
}
439439

440440
#[cfg(test)]

0 commit comments

Comments
 (0)