diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 2a8f8f0..534e727 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.28 +current_version = 0.1.29 commit = True message = [SKIP] version bump {current_version} -> {new_version} diff --git a/docs/CHANGELOG.rst b/docs/CHANGELOG.rst index f067ff2..247e13a 100644 --- a/docs/CHANGELOG.rst +++ b/docs/CHANGELOG.rst @@ -2,6 +2,10 @@ Changelog ========= + +v0.1.29 (2024-03-21) +------------------------------------------ + * Change handling of lowercase module names v0.1.28 (2023-09-29) diff --git a/docs/rst/conf.py b/docs/rst/conf.py index 04c09d8..e68cac5 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.28' +version = release = '0.1.29' pygments_style = 'trac' templates_path = ['_templates'] diff --git a/pyproject.toml b/pyproject.toml index aa38a7e..88a3d1c 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta" [project] name = "mdacli" -version = "0.1.28" +version = "0.1.29" 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 528f43b..d2faf4e 100644 --- a/src/mdacli/__init__.py +++ b/src/mdacli/__init__.py @@ -11,5 +11,5 @@ __all__ = ["cli"] -__version__ = '0.1.28' +__version__ = '0.1.29' __authors__ = 'MDAnalysis Development Team and contributors'