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.

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

## Python Icechunk Library 0.2.12

### Features

- Distributed writes now can use Dask's native reduction.
- Disallow creating tags/branches pointing to non-existing snapshots.
- `SnapshotInfo` now contains information about the snapshot manifests.
- More logging for garbage collection and expiration.

### Fixes

- Fix type annotations for the `Diff` type.

## Python Icechunk Library 0.2.11

### 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 = "0.2.11"
version = "0.2.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 All @@ -21,7 +21,7 @@ crate-type = ["cdylib"]
bytes = "1.10.1"
chrono = { version = "0.4.40" }
futures = "0.3.31"
icechunk = { path = "../icechunk", version = "0.2.10", features = ["logs"] }
icechunk = { path = "../icechunk", version = "0.2.11", features = ["logs"] }
itertools = "0.14.0"
pyo3 = { version = "0.24.1", features = [
"chrono",
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.2.10"
version = "0.2.11"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

shall we get this one back in sync?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't think so, that would force us to either skip releases on rust or release versions without changes. These things are going to get out of sync eventually anyway. As the Python library grows, there will be python only releases.

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