diff --git a/Cargo.lock b/Cargo.lock index 069cc8e5..d0bc9b3b 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1358,7 +1358,7 @@ dependencies = [ [[package]] name = "icechunk" -version = "0.2.3" +version = "0.2.4" dependencies = [ "async-recursion", "async-stream", @@ -1405,7 +1405,7 @@ dependencies = [ [[package]] name = "icechunk-python" -version = "0.2.3" +version = "0.2.4" dependencies = [ "async-stream", "async-trait", diff --git a/Changelog.python.md b/Changelog.python.md index 1211c3ba..27e567b6 100644 --- a/Changelog.python.md +++ b/Changelog.python.md @@ -1,5 +1,11 @@ # Changelog +### Python Icechunk Library 0.2.4 + +### Fixes + +- Fixes a bug where object storage paths were incorrectly formatted when using Windows. + ## Python Icechunk Library 0.2.3 ### Features diff --git a/icechunk-python/Cargo.toml b/icechunk-python/Cargo.toml index 3d5c7fa7..df07c4af 100644 --- a/icechunk-python/Cargo.toml +++ b/icechunk-python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icechunk-python" -version = "0.2.3" +version = "0.2.4" 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.9.0" chrono = { version = "0.4.39" } futures = "0.3.31" -icechunk = { path = "../icechunk", version = "0.2.3", features = ["logs"] } +icechunk = { path = "../icechunk", version = "0.2.4", features = ["logs"] } itertools = "0.14.0" pyo3 = { version = "0.23", features = [ "chrono", diff --git a/icechunk/Cargo.toml b/icechunk/Cargo.toml index ffb11ca4..268ddf83 100644 --- a/icechunk/Cargo.toml +++ b/icechunk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icechunk" -version = "0.2.3" +version = "0.2.4" description = "Transactional storage engine for Zarr designed for use on cloud object storage" readme = "../README.md" repository = "https://github.com/earth-mover/icechunk"