Skip to content

Commit a1a0d97

Browse files
committed
chg: doc: fix typo in tag string, update changelog for release
Signed-off-by: Stephen L Arnold <sarnold@vctlabs.com>
1 parent 56e36dd commit a1a0d97

File tree

2 files changed

+16
-2
lines changed

2 files changed

+16
-2
lines changed

CHANGELOG.rst

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,21 @@ Changelog
22
=========
33

44

5-
0.3.3 (2025-07-18)
5+
0.3.4 (2025-10-19)
6+
------------------
7+
8+
Changes
9+
~~~~~~~
10+
- Fix typo in tag string, update changelog for release. [Stephen L
11+
Arnold]
12+
- Add csv tag list to onelineday report. [Stephen L Arnold]
13+
14+
* output deduplicated list of tags for report period, eg, today
15+
* update pre-commit hooks and remove deprecated encoding pragma hook
16+
* bump python version in check workflow
17+
18+
19+
0.3.3 (2025-07-19)
620
------------------
721

822
Changes

extensions/onelineday.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ def update_job_days(interval):
116116
final_total += tracked_total
117117
all_strings = [x.split(',', maxsplit=1)[1] for x in job_tag_strs if job_tag in x]
118118
tag_list = list(dict.fromkeys(all_strings))
119-
tag_strings = " ,".join(tag_list)
119+
tag_strings = ", ".join(tag_list)
120120

121121
if CSV_OUTPUT:
122122
print(f'{job_tag};{strf_delta(tracked_total)}')

0 commit comments

Comments
 (0)