From f10160e5fdeca7794f07601ab37fcadde76dff69 Mon Sep 17 00:00:00 2001 From: Sebastian Galkin Date: Wed, 16 Oct 2024 15:20:43 -0300 Subject: [PATCH] Release 0.1.0-alpha.3 to the Rust world --- Cargo.lock | 4 ++-- icechunk-python/Cargo.toml | 4 ++-- icechunk-python/pyproject.toml | 8 +++----- icechunk/Cargo.toml | 2 +- 4 files changed, 8 insertions(+), 10 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 4bbcccea..7d268927 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1191,7 +1191,7 @@ dependencies = [ [[package]] name = "icechunk" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" dependencies = [ "async-recursion", "async-stream", @@ -1226,7 +1226,7 @@ dependencies = [ [[package]] name = "icechunk-python" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" dependencies = [ "async-stream", "bytes", diff --git a/icechunk-python/Cargo.toml b/icechunk-python/Cargo.toml index 0e422ace..1d5d5d75 100644 --- a/icechunk-python/Cargo.toml +++ b/icechunk-python/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icechunk-python" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" description = "Transactional storage engine for Zarr designed for use on cloud object storage" readme = "../README.md" repository = "https://github.com/earth-mover/icechunk" @@ -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.1" } +icechunk = { path = "../icechunk", version = "0.1.0-alpha.3" } pyo3 = { version = "0.21", features = [ "chrono", "extension-module", diff --git a/icechunk-python/pyproject.toml b/icechunk-python/pyproject.toml index 29d6c9da..1ca5fd6f 100644 --- a/icechunk-python/pyproject.toml +++ b/icechunk-python/pyproject.toml @@ -13,20 +13,18 @@ classifiers = [ "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", ] -license = {text = "Apache-2.0"} +license = { text = "Apache-2.0" } dynamic = ["version"] dependencies = ["zarr==3.0.0b0"] [tool.poetry] name = "icechunk" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" description = "Icechunk Python" authors = ["Earthmover "] readme = "README.md" -packages = [ - { include = "icechunk", from = "python" } -] +packages = [{ include = "icechunk", from = "python" }] [project.optional-dependencies] test = [ diff --git a/icechunk/Cargo.toml b/icechunk/Cargo.toml index 6e27c86c..9aea3ed2 100644 --- a/icechunk/Cargo.toml +++ b/icechunk/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "icechunk" -version = "0.1.0-alpha.2" +version = "0.1.0-alpha.3" description = "Transactional storage engine for Zarr designed for use on cloud object storage" readme = "../README.md" repository = "https://github.com/earth-mover/icechunk"