diff --git a/.bumpversion.cfg b/.bumpversion.cfg index 443e27a..d7f3f26 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0 +current_version = 0.1.1 commit = True tag_name = v{new_version} parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?Prc)\.(?P\d+))? diff --git a/pyproject.toml b/pyproject.toml index 1677ec9..99288b3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "utt-balance" -version = "0.1.0" +version = "0.1.1" description = "A utt plugin to check worked time balance against daily/weekly targets" readme = "README.md" license = "GPL-3.0-only" diff --git a/src/utt_balance/__init__.py b/src/utt_balance/__init__.py index a6e68db..4358226 100644 --- a/src/utt_balance/__init__.py +++ b/src/utt_balance/__init__.py @@ -32,6 +32,6 @@ For more information, see: https://github.com/loganthomas/utt-balance """ -__version__ = "0.1.0" +__version__ = "0.1.1" __all__ = ["__version__"]