From 8e0878e48094c4348d91b6176993d48760342b46 Mon Sep 17 00:00:00 2001 From: Ali Ramlaoui Date: Fri, 5 Jun 2026 14:36:12 +0200 Subject: [PATCH] chore: bump version to 0.4.0 --- Cargo.lock | 4 ++-- Cargo.toml | 2 +- atompack-py/pyproject.toml | 2 +- atompack-py/python/atompack/__init__.py | 2 +- atompack-py/uv.lock | 2 +- docs/source/conf.py | 2 +- 6 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index edd795e..0ce23b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -25,7 +25,7 @@ checksum = "5192cca8006f1fd4f7237516f40fa183bb07f8fbdfedaa0036de5ea9b0b45e78" [[package]] name = "atompack" -version = "0.3.1" +version = "0.4.0" dependencies = [ "bincode", "bytemuck", @@ -44,7 +44,7 @@ dependencies = [ [[package]] name = "atompack-py" -version = "0.3.1" +version = "0.4.0" dependencies = [ "atompack", "bincode", diff --git a/Cargo.toml b/Cargo.toml index d596e21..e71c959 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["atompack", "atompack-py"] resolver = "2" [workspace.package] -version = "0.3.1" +version = "0.4.0" edition = "2024" authors = [ "Ali Ramlaoui ", diff --git a/atompack-py/pyproject.toml b/atompack-py/pyproject.toml index a7aa74d..11c1a35 100644 --- a/atompack-py/pyproject.toml +++ b/atompack-py/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "maturin" [project] name = "atompack-db" -version = "0.3.1" +version = "0.4.0" description = "Fast, compressed storage for atomic structures with properties." authors = [ {name = "Ali Ramlaoui", email = "ali.ramlaoui@entalpic.ai"}, diff --git a/atompack-py/python/atompack/__init__.py b/atompack-py/python/atompack/__init__.py index ef144d2..ff37ab6 100644 --- a/atompack-py/python/atompack/__init__.py +++ b/atompack-py/python/atompack/__init__.py @@ -43,7 +43,7 @@ from ._atompack_rs import PyMolecule as Molecule from .ase_bridge import add_ase_batch, from_ase, to_ase, to_ase_batch -__version__ = "0.3.1" +__version__ = "0.4.0" __all__ = [ "Atom", "Molecule", diff --git a/atompack-py/uv.lock b/atompack-py/uv.lock index f95e273..ee46064 100644 --- a/atompack-py/uv.lock +++ b/atompack-py/uv.lock @@ -166,7 +166,7 @@ wheels = [ [[package]] name = "atompack-db" -version = "0.3.1" +version = "0.4.0" source = { editable = "." } dependencies = [ { name = "huggingface-hub", version = "0.36.2", source = { registry = "https://pypi.org/simple" }, marker = "python_full_version < '3.9'" }, diff --git a/docs/source/conf.py b/docs/source/conf.py index 24b5a8e..4f5a79c 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -11,7 +11,7 @@ copyright = "2026, Entalpic" author = "Ali Ramlaoui and contributors" # Contributors to the package release = ( - "0.3.1" # Current version of the package, can be retrieved programmatically too. + "0.4.0" # Current version of the package, can be retrieved programmatically too. ) # -- General configuration ---------------------------------------------------