diff --git a/.bumpversion.cfg b/.bumpversion.cfg index be88a7e..443e27a 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0-rc.3 +current_version = 0.1.0 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 d983d4f..1677ec9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "utt-balance" -version = "0.1.0-rc.3" +version = "0.1.0" 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 17ea2c6..a6e68db 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-rc.3" +__version__ = "0.1.0" __all__ = ["__version__"]