diff --git a/CHANGES.rst b/CHANGES.rst index 608adb6..d61a7c2 100644 --- a/CHANGES.rst +++ b/CHANGES.rst @@ -1,7 +1,7 @@ .. |Changes| Version 0.7.4 -------------------- +----------------- Release 2023-12-10 @@ -12,7 +12,6 @@ Release 2023-12-10 - [0.7.3.post1] bump version for pypi (`ade6cd8 `_ by Autumn). - [*] Port instruct to newer Python versions (#3) (`19c30b2 `_ by Autumn Jolitz). - Version 0.7.3 ----------------- diff --git a/README.rst b/README.rst index 7f70eed..4f75c90 100644 --- a/README.rst +++ b/README.rst @@ -50,6 +50,8 @@ Current Capabilities: Next Goals: +======= + - ``CStruct``-Base class that operates on an ``_cvalue`` cffi struct. - Cython compatibility diff --git a/tasks.py b/tasks.py index f55efc3..8975ff2 100644 --- a/tasks.py +++ b/tasks.py @@ -90,6 +90,13 @@ def window(iterable: Iterable[T]) -> Iterable[Tuple[T, T]]: next_item = item +@task +def update_changes(context: Context): + context.run( + r"git-changelog -I CHANGES.rst -g '^Version (?P[\d\.]+)' -m '.. |Changes|' -t path:CHANGES.rst.template -F '82c264ca9a125317945e4aa3f581f009b49014ad...' -i -o CHANGES.rst" + ) + + @task def setup_metadata() -> Dict[str, str]: with open(_.project_root(Path, silent=True) / "setup.cfg") as fh: