diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 558ab38..eba991b 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.31 +current_version = 0.1.32 commit = True message = [SKIP] version bump {current_version} -> {new_version} diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst index a5c4732..b50a48f 100644 --- a/docs/CHANGELOG.rst +++ b/docs/CHANGELOG.rst @@ -2,6 +2,10 @@ Changelog ========= + +v0.1.32 (2024-07-09) +------------------------------------------ + * Cleanup logger function v0.1.31 (2024-07-08) diff --git a/docs/rst/conf.py b/docs/rst/conf.py index 037b0f3..a1c9b3d 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.31' +version = release = '0.1.32' pygments_style = 'trac' templates_path = ['_templates'] diff --git a/pyproject.toml b/pyproject.toml index 52568b0..08a7032 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "mdacli" -version = "0.1.31" +version = "0.1.32" 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 b255b45..d7bc070 100644 --- a/src/mdacli/__init__.py +++ b/src/mdacli/__init__.py @@ -11,5 +11,5 @@ __all__ = ["cli"] -__version__ = '0.1.31' +__version__ = '0.1.32' __authors__ = 'MDAnalysis Development Team and contributors'