diff --git a/Cargo.lock b/Cargo.lock index cd3eb4852..7674c17d0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1759,7 +1759,7 @@ dependencies = [ [[package]] name = "icechunk" -version = "0.3.16" +version = "0.3.17" dependencies = [ "anyhow", "assert_fs", @@ -1822,7 +1822,7 @@ dependencies = [ [[package]] name = "icechunk-python" -version = "1.1.13" +version = "1.1.14" dependencies = [ "async-stream", "async-trait", diff --git a/Changelog.python.md b/Changelog.python.md index 4211073e1..86b9fb558 100644 --- a/Changelog.python.md +++ b/Changelog.python.md @@ -1,5 +1,11 @@ # Changelog +## Python Icechunk Library 1.1.14 + +### Fixes + +- Solve issue resolving virtual chunks in URLs with special characters + ## Python Icechunk Library 1.1.13 ### Features diff --git a/icechunk-python/Cargo.toml b/icechunk-python/Cargo.toml index 2b29250d9..c192055c7 100644 --- a/icechunk-python/Cargo.toml +++ b/icechunk-python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icechunk-python" -version = "1.1.13" +version = "1.1.14" description = "Transactional storage engine for Zarr designed for use on cloud object storage" readme = "../README.md" repository = "https://github.com/earth-mover/icechunk" @@ -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.16", features = ["logs"] } +icechunk = { path = "../icechunk", version = "0.3.17", features = ["logs"] } itertools = "0.14.0" pyo3 = { version = "0.27.0", features = [ "chrono", diff --git a/icechunk/Cargo.toml b/icechunk/Cargo.toml index 880ed02fd..7fcba8607 100644 --- a/icechunk/Cargo.toml +++ b/icechunk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icechunk" -version = "0.3.16" +version = "0.3.17" description = "Transactional storage engine for Zarr designed for use on cloud object storage" readme = "../README.md" repository = "https://github.com/earth-mover/icechunk"