diff --git a/.gitchangelog.rc b/.gitchangelog.rc index 418bc60..7660938 100644 --- a/.gitchangelog.rc +++ b/.gitchangelog.rc @@ -160,10 +160,11 @@ tag_filter_regexp = r'^[0-9]+\.[0-9]+(\.[0-9]+)?$' ## ## This label will be used as the changelog Title of the last set of changes ## between last valid tag and HEAD if any. -unreleased_version_label = "(unreleased)" -#unreleased_version_label = lambda: swrap( -# ["git", "describe", "--tags"], -#shell=False) +#unreleased_version_label = "(unreleased)" +unreleased_version_label = lambda: swrap( + ["git", "describe", "--tags"], + shell=False, +) ## ``output_engine`` is a callable diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 6c69c10..aafe36e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -2,7 +2,20 @@ Changelog ========= -0.2.0 (2024-08-25) +0.2.1 (2024-08-28) +------------------ + +Changes +~~~~~~~ +- Add yet another misc docstring. [Stephen Arnold] + +Fixes +~~~~~ +- Use correct signature for about dialog, cleanup app string. [Stephen + Arnold] + + +0.2.0 (2024-08-27) ------------------ New @@ -17,7 +30,7 @@ Changes - Refactor doc extensions to use apidoc, add docs logo icon. [Stephen Arnold] - * cleanup more docstrings and sphinx modules + * cleanup more docstrings and sphinx modules, update changelog again - Update changelog for next version, remove sphinx git hash. [Stephen Arnold] diff --git a/src/timew_status/utils.py b/src/timew_status/utils.py index 2264a9e..1afb845 100644 --- a/src/timew_status/utils.py +++ b/src/timew_status/utils.py @@ -1,4 +1,5 @@ """ +Base configuration and app helper functions. """ import os import subprocess