Skip to content

Commit

Permalink
Release version 0.2.1 (#765)
Browse files Browse the repository at this point in the history
  • Loading branch information
paraseba authored Feb 21, 2025
1 parent 81938ed commit 426806b
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 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.

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

## Python Icechunk Library 0.2.1

### Features

- Users can now override consistency defaults. With this Icechunk is usable in a larger set of object stores,
including those without support for conditional updates. In this setting, Icechunk loses some of its consistency guarantees.
This configuration variables are for advanced users only, and should only be changed if necessary for compatibility.

```python
class StorageSettings:
...

@property
def unsafe_use_conditional_update(self) -> bool | None:
...
@property
def unsafe_use_conditional_create(self) -> bool | None:
...
@property
def unsafe_use_metadata(self) -> bool | None:
...
```

## Python Icechunk Library 0.2.0

This release is focused on stabilizing Icechunk's on-disk serialization format. It's a non-backwards
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.0"
version = "0.2.1"
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.0", features = ["logs"] }
icechunk = { path = "../icechunk", version = "0.2.1", 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.0"
version = "0.2.1"
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 426806b

Please sign in to comment.