Skip to content

Commit

Permalink
bump release docs, small docs update
Browse files Browse the repository at this point in the history
  • Loading branch information
mpiannucci committed Feb 25, 2025
1 parent c4844b8 commit 1f6c827
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 6 deletions.
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.

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

## Python Icechunk Library 0.2.3

### Features

- `Repository` can now be pickled.
- `icechunk.print_debug_info()` now prints out relative information about the installed version of icechunk and relative dependencies.

### Fixes

- Fixes a missing export for Google Cloud Storage credentials.

## Python Icechunk Library 0.2.2

### Features
Expand Down
2 changes: 1 addition & 1 deletion docs/docs/icechunk-python/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ snapshot_id_2 = session_2.commit("overwrite some values")
We can see the full version history of our repo:

```python
hist = repo.ancestry(snapshot_id=snapshot_id_2)
list(hist) = repo.ancestry(snapshot_id=snapshot_id_2)
for ancestor in hist:
print(ancestor.id, ancestor.message, ancestor.written_at)

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.2"
version = "0.2.3"
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.9.0"
chrono = { version = "0.4.39" }
futures = "0.3.31"
icechunk = { path = "../icechunk", version = "0.2.2", features = ["logs"] }
icechunk = { path = "../icechunk", version = "0.2.3", features = ["logs"] }
itertools = "0.14.0"
pyo3 = { version = "0.23", 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.2"
version = "0.2.3"
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

0 comments on commit 1f6c827

Please sign in to comment.