diff --git a/CITATION.cff b/CITATION.cff index 9d1eb3b8..107f4008 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -1,4 +1,4 @@ -cff-version: 1.14.0 +cff-version: 1.14.1 message: "If you use this software, please cite it as below." authors: - family-names: Moreno @@ -11,7 +11,7 @@ authors: given-names: Charles orcid: https://orcid.org/0000-0003-2924-1732 title: "hstrat" -version: 1.14.0 +version: 1.14.1 preferred-citation: type: article authors: diff --git a/hstrat/__init__.py b/hstrat/__init__.py index faadee2b..7740369a 100644 --- a/hstrat/__init__.py +++ b/hstrat/__init__.py @@ -2,7 +2,7 @@ __author__ = """Matthew Andres Moreno""" __email__ = "m.more500@gmail.com" -__version__ = "1.14.0" +__version__ = "1.14.1" from ._auxiliary_lib import lazy_attach_stub diff --git a/hstrat/_auxiliary_lib/_get_hstrat_version.py b/hstrat/_auxiliary_lib/_get_hstrat_version.py index d9a91f98..334994c6 100644 --- a/hstrat/_auxiliary_lib/_get_hstrat_version.py +++ b/hstrat/_auxiliary_lib/_get_hstrat_version.py @@ -1,2 +1,2 @@ def get_hstrat_version() -> str: - return "1.14.0" + return "1.14.1" diff --git a/pyproject.toml b/pyproject.toml index 9eb6fa61..92c7ed22 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -56,7 +56,7 @@ keywords = [ "hstrat", ] requires-python = ">=3.10" -version = "1.14.0" +version = "1.14.1" [project.readme] file = "README.md" diff --git a/setup.cfg b/setup.cfg index a80df74f..dd4a22c8 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpver] -current_version = "v1.14.0" +current_version = "v1.14.1" version_pattern = "vMAJOR.MINOR.PATCH" commit = True tag = True