Skip to content

Commit 59f31f2

Browse files
committed
Change default PRODID to nl.whynothugo.todoman
1 parent a0d9310 commit 59f31f2

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

CHANGELOG.rst

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ Changelog
44
This file contains a brief summary of new features and dependency changes or
55
releases, in reverse chronological order.
66

7+
v4.5.0
8+
------
9+
10+
* The ``PRODID`` for new entries has changed ``io.barrera.todoman`` to
11+
``nl.whynothugo.todoman``. This has no functional impact, but may be relevant
12+
when debugging the origin of specific files.
13+
714
v4.4.0
815
------
916

todoman/model.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -381,7 +381,7 @@ def _write_new(self, path: str) -> icalendar.Todo:
381381
c.add_component(vtodo)
382382

383383
with AtomicWriter(path, "wb").open() as f:
384-
c.add("prodid", "io.barrera.todoman")
384+
c.add("prodid", "nl.whynothugo.todoman")
385385
c.add("version", "2.0")
386386
f.write(c.to_ical())
387387

0 commit comments

Comments
 (0)