Skip to content

Commit 426806b

Browse files
authored
Release version 0.2.1 (#765)
1 parent 81938ed commit 426806b

File tree

4 files changed

+28
-5
lines changed

4 files changed

+28
-5
lines changed

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Changelog.python.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,28 @@
11
# Changelog
22

3+
## Python Icechunk Library 0.2.1
4+
5+
### Features
6+
7+
- Users can now override consistency defaults. With this Icechunk is usable in a larger set of object stores,
8+
including those without support for conditional updates. In this setting, Icechunk loses some of its consistency guarantees.
9+
This configuration variables are for advanced users only, and should only be changed if necessary for compatibility.
10+
11+
```python
12+
class StorageSettings:
13+
...
14+
15+
@property
16+
def unsafe_use_conditional_update(self) -> bool | None:
17+
...
18+
@property
19+
def unsafe_use_conditional_create(self) -> bool | None:
20+
...
21+
@property
22+
def unsafe_use_metadata(self) -> bool | None:
23+
...
24+
```
25+
326
## Python Icechunk Library 0.2.0
427

528
This release is focused on stabilizing Icechunk's on-disk serialization format. It's a non-backwards

icechunk-python/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icechunk-python"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "Transactional storage engine for Zarr designed for use on cloud object storage"
55
readme = "../README.md"
66
repository = "https://github.com/earth-mover/icechunk"
@@ -21,7 +21,7 @@ crate-type = ["cdylib"]
2121
bytes = "1.9.0"
2222
chrono = { version = "0.4.39" }
2323
futures = "0.3.31"
24-
icechunk = { path = "../icechunk", version = "0.2.0", features = ["logs"] }
24+
icechunk = { path = "../icechunk", version = "0.2.1", features = ["logs"] }
2525
itertools = "0.14.0"
2626
pyo3 = { version = "0.23", features = [
2727
"chrono",

icechunk/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "icechunk"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
description = "Transactional storage engine for Zarr designed for use on cloud object storage"
55
readme = "../README.md"
66
repository = "https://github.com/earth-mover/icechunk"

0 commit comments

Comments
 (0)