Skip to content

Commit

Permalink
[SKIP] version bump 0.1.29 -> 0.1.30
Browse files Browse the repository at this point in the history
Add `level` option to `setup_logging ` (#116)
  • Loading branch information
joaomcteixeira committed Apr 3, 2024
1 parent 4a1e53f commit 561b998
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.1.29
current_version = 0.1.30
commit = True
message =
[SKIP] version bump {current_version} -> {new_version}
Expand Down
4 changes: 4 additions & 0 deletions docs/CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@
Changelog
=========


v0.1.30 (2024-04-03)
------------------------------------------

* Replace Boolean ``debug`` option in ``setup_logging`` by more flexible integer
``level`` parameter.

Expand Down
2 changes: 1 addition & 1 deletion docs/rst/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -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.29'
version = release = '0.1.30'

pygments_style = 'trac'
templates_path = ['_templates']
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "mdacli"
version = "0.1.29"
version = "0.1.30"
description = "A command line client for MDAnalysis Analysis classes."
authors = [
{name = "MDAnalysis Development Team and contributors", email = "mdanalysis@numfocus.org"},
Expand Down
2 changes: 1 addition & 1 deletion src/mdacli/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@


__all__ = ["cli"]
__version__ = '0.1.29'
__version__ = '0.1.30'
__authors__ = 'MDAnalysis Development Team and contributors'

0 comments on commit 561b998

Please sign in to comment.