From c21c6cefdbbff17533153754caaeb0e48d63c633 Mon Sep 17 00:00:00 2001 From: stefsmeets <873520+stefsmeets@users.noreply.github.com> Date: Tue, 16 Jul 2024 08:46:25 +0000 Subject: [PATCH] Bump version to: 1.4.0 --- CITATION.cff | 2 +- README.md | 2 +- pyproject.toml | 4 ++-- src/gemdat/__init__.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CITATION.cff b/CITATION.cff index b347d07..360cec5 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -41,4 +41,4 @@ identifiers: - type: doi value: 10.5281/zenodo.8401669 license: Apache-2.0 -version: 1.3.0 +version: 1.4.0 diff --git a/README.md b/README.md index 1a1ec46..1fadca6 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,7 @@ Check out our [Contributing Guidelines](CONTRIBUTING.md#Getting-started-with-dev ## How to Cite -- Victor Azizi, Stef Smeets, Anastasiia K. Lavrinenko and Simone Ciarella. GEMDAT (Version 1.3.0) [Computer software]. https://github.com/GEMDAT-repos/GEMDAT, doi: [10.5281/zenodo.8401669](https://dx.doi.org/10.5281/zenodo.8401669) +- Victor Azizi, Stef Smeets, Anastasiia K. Lavrinenko and Simone Ciarella. GEMDAT (Version 1.4.0) [Computer software]. https://github.com/GEMDAT-repos/GEMDAT, doi: [10.5281/zenodo.8401669](https://dx.doi.org/10.5281/zenodo.8401669) ## Credits diff --git a/pyproject.toml b/pyproject.toml index cbbe970..57dc3f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -5,7 +5,7 @@ build-backend = "setuptools.build_meta" # https://packaging.python.org/en/latest/specifications/declaring-project-metadata/ [project] name = "GEMDAT" -version = "1.3.0" +version = "1.4.0" description = "Generalized Molecular Dynamics Analysis Tool" readme = "README.md" requires-python = ">=3.10" @@ -111,7 +111,7 @@ allow_redefinition = true ignore_missing_imports = true [tool.bumpversion] -current_version = "1.3.0" +current_version = "1.4.0" [[tool.bumpversion.files]] filename = "src/gemdat/__init__.py" diff --git a/src/gemdat/__init__.py b/src/gemdat/__init__.py index eb63019..f923309 100644 --- a/src/gemdat/__init__.py +++ b/src/gemdat/__init__.py @@ -10,7 +10,7 @@ from .transitions import Transitions from .volume import Volume, trajectory_to_volume -__version__ = '1.3.0' +__version__ = '1.4.0' __all__ = [ 'Jumps', 'load_known_material',