File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff 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
822Changes
Original file line number Diff line number Diff 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 )} ' )
You can’t perform that action at this time.
0 commit comments