diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 0903ab6..558ab38 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.30 +current_version = 0.1.31 commit = True message = [SKIP] version bump {current_version} -> {new_version} diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst index 9f61bdc..63bfe50 100644 --- a/docs/CHANGELOG.rst +++ b/docs/CHANGELOG.rst @@ -2,6 +2,10 @@ Changelog ========= + +v0.1.31 (2024-07-08) +------------------------------------------ + * Add Python 3.12 * Remove Python 3.8 * Change handling of CHANGELOG checks diff --git a/docs/rst/conf.py b/docs/rst/conf.py index d3b50d8..037b0f3 100644 --- a/docs/rst/conf.py +++ b/docs/rst/conf.py @@ -62,7 +62,7 @@ year = '2021' author = 'Philip Loche, Joao MC Teixeira and Oliver Beckstein' copyright = '{0}, {1}'.format(year, author) -version = release = '0.1.30' +version = release = '0.1.31' pygments_style = 'trac' templates_path = ['_templates'] diff --git a/pyproject.toml b/pyproject.toml index 52fd9e3..52568b0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "mdacli" -version = "0.1.30" +version = "0.1.31" description = "A command line client for MDAnalysis Analysis classes." authors = [ {name = "MDAnalysis Development Team and contributors", email = "mdanalysis@numfocus.org"}, diff --git a/src/mdacli/__init__.py b/src/mdacli/__init__.py index 08752c4..b255b45 100644 --- a/src/mdacli/__init__.py +++ b/src/mdacli/__init__.py @@ -11,5 +11,5 @@ __all__ = ["cli"] -__version__ = '0.1.30' +__version__ = '0.1.31' __authors__ = 'MDAnalysis Development Team and contributors'