diff --git a/.bumpversion.cfg b/.bumpversion.cfg index c0cde74..75d63ca 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 0.1.0-rc.1 +current_version = 0.1.0-rc.2 commit = True tag_name = v{new_version} parse = (?P\d+)\.(?P\d+)\.(?P\d+)(-(?Prc)\.(?P\d+))? @@ -21,6 +21,6 @@ first_value = 1 search = version = "{current_version}" replace = version = "{new_version}" -[bumpversion:file:src/utt_balance/__init__.py] +[bumpversion:file:src/utt_project_summary/__init__.py] search = __version__ = "{current_version}" replace = __version__ = "{new_version}" diff --git a/README.md b/README.md index 77b999f..a2599e7 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,11 @@ # utt-project-summary +[![CI - Test](https://github.com/loganthomas/utt-project-summary/actions/workflows/unit-tests.yml/badge.svg?branch=main)](https://github.com/loganthomas/utt-project-summary/actions/workflows/unit-tests.yml) +[![PyPI Latest Release](https://img.shields.io/pypi/v/utt-project-summary.svg)](https://pypi.org/project/utt-project-summary/) +[![PyPI Downloads](https://img.shields.io/pypi/dm/utt-project-summary.svg?label=PyPI%20downloads)](https://pypi.org/project/utt-project-summary/) +[![License - GPL-3.0](https://img.shields.io/pypi/l/utt-project-summary.svg)](https://github.com/loganthomas/utt-project-summary/blob/main/LICENSE) +[![Python Versions](https://img.shields.io/pypi/pyversions/utt-project-summary.svg)](https://pypi.org/project/utt-project-summary/) + A [`utt`](https://github.com/larose/utt) plugin that shows projects sorted by time spent. ## Why utt-project-summary? diff --git a/pyproject.toml b/pyproject.toml index e731bd1..33dc0f9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "hatchling.build" [project] name = "utt-project-summary" -version = "0.1.0-rc.1" +version = "0.1.0-rc.2" description = "A utt plugin to show projects sorted by time spent" readme = "README.md" license = "GPL-3.0-only" diff --git a/src/utt_project_summary/__init__.py b/src/utt_project_summary/__init__.py index c0b911f..ff3bfb2 100644 --- a/src/utt_project_summary/__init__.py +++ b/src/utt_project_summary/__init__.py @@ -1,3 +1,3 @@ """utt-project-summary: A utt plugin to show projects sorted by time spent.""" -__version__ = "0.1.0-rc.1" +__version__ = "0.1.0-rc.2"