Skip to content

Commit

Permalink
Merge pull request #7 from sarnold/still-more-docs
Browse files Browse the repository at this point in the history
patch for About and a docstring
  • Loading branch information
sarnold authored Aug 29, 2024
2 parents 1cfda2a + a086abb commit 4659e21
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 6 deletions.
9 changes: 5 additions & 4 deletions .gitchangelog.rc
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
17 changes: 15 additions & 2 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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]

Expand Down
1 change: 1 addition & 0 deletions src/timew_status/utils.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
"""
Base configuration and app helper functions.
"""
import os
import subprocess
Expand Down

0 comments on commit 4659e21

Please sign in to comment.