Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

3 changes: 2 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@ members = ["atompack", "atompack-py"]
resolver = "2"

[workspace.package]
version = "0.2.1"
version = "0.3.0"
edition = "2024"
authors = [
"Ali Ramlaoui <ali.ramlaoui@entalpic.ai>",
"Daniel Speckhard <daniel.speckhard@entalpic.ai>",
"Victor Schmidt <victor.schmidt@entalpic.ai>",
]
license = "Apache-2.0"
Expand Down
3 changes: 2 additions & 1 deletion atompack-py/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,11 @@ build-backend = "maturin"

[project]
name = "atompack-db"
version = "0.2.1"
version = "0.3.0"
description = "Fast, compressed storage for atomic structures with properties."
authors = [
{name = "Ali Ramlaoui", email = "ali.ramlaoui@entalpic.ai"},
{name = "Daniel Speckhard", email = "daniel.speckhard@entalpic.ai"},
{name = "Victor Schmidt", email = "victor.schmidt@entalpic.ai"}
]
readme = "README.md"
Expand Down
2 changes: 1 addition & 1 deletion atompack-py/python/atompack/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.2.1"
__version__ = "0.3.0"
__all__ = [
"Atom",
"Molecule",
Expand Down
2 changes: 1 addition & 1 deletion atompack-py/uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
copyright = "2026, Entalpic"
author = "Ali Ramlaoui and contributors" # Contributors to the package
release = (
"0.2.1" # Current version of the package, can be retrieved programmatically too.
"0.3.0" # Current version of the package, can be retrieved programmatically too.
)

# -- General configuration ---------------------------------------------------
Expand Down
Loading