Skip to content

Commit

Permalink
Version 0.1.0-alpha.4 release updates (#306)
Browse files Browse the repository at this point in the history
* Update changelogs and version

* Update Changelog.python.md

Co-authored-by: Sebastián Galkin <[email protected]>

* sync with python changees

---------

Co-authored-by: Sebastián Galkin <[email protected]>
  • Loading branch information
mpiannucci and paraseba authored Oct 21, 2024
1 parent 8e8549b commit e0a8011
Show file tree
Hide file tree
Showing 6 changed files with 25 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.

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

## Python Icechunk Library 0.1.0a4

### Features

- Added `IcechunkStore::reset_branch` and `IcechunkStore::async_reset_branch` methods to point the head of the current branch to another snapshot, changing the history of the branch

### Fixes

- Zarr metadata will now only include the attributes key when the attributes dictionary of the node is not empty, aligning Icechunk with the python-zarr implementation.

## Python Icechunk Library 0.1.0a2

Expand Down
10 changes: 10 additions & 0 deletions Changelog.rust.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Changelog

## Rust Icechunk Library 0.1.0-alpha.4

### Features

- Added new `Store::reset_branch` method to point the head of the current branch to another snapshot, changing the history of the branch.

### Fixes

- Zarr metadata will now only include the attributes key when the attributes dictionary of the node is not empty, aligning Icechunk with the python-zarr implementation.

## Rust Icechunk Library 0.1.0-alpha.3

### 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.1.0-alpha.3"
version = "0.1.0-alpha.4"
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.7.2"
chrono = { version = "0.4.38" }
futures = "0.3.30"
icechunk = { path = "../icechunk", version = "0.1.0-alpha.3" }
icechunk = { path = "../icechunk", version = "0.1.0-alpha.4" }
pyo3 = { version = "0.21", features = [
"chrono",
"extension-module",
Expand Down
2 changes: 1 addition & 1 deletion icechunk-python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ dependencies = ["zarr==3.0.0b1"]

[tool.poetry]
name = "icechunk"
version = "0.1.0-alpha.3"
version = "0.1.0-alpha.4"
description = "Icechunk Python"
authors = ["Earthmover <[email protected]>"]
readme = "README.md"
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.1.0-alpha.3"
version = "0.1.0-alpha.4"
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 e0a8011

Please sign in to comment.