Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into prerelease/0.8.0a0
Browse files Browse the repository at this point in the history
  • Loading branch information
autumnjolitz committed Jun 24, 2024
2 parents 516c6ba + 3100d65 commit addca84
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 2 deletions.
3 changes: 1 addition & 2 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
.. |Changes|
Version 0.7.4
-------------------
-----------------

Release 2023-12-10

Expand All @@ -12,7 +12,6 @@ Release 2023-12-10
- [0.7.3.post1] bump version for pypi (`ade6cd8 <https://github.com/autumnjolitz/instruct/commit/ade6cd882d2771f4abe9927e78614886f7f01ad6>`_ by Autumn).
- [*] Port instruct to newer Python versions (#3) (`19c30b2 <https://github.com/autumnjolitz/instruct/commit/19c30b278c23cc63fadbbaeadc30409c15bce098>`_ by Autumn Jolitz).


Version 0.7.3
-----------------

Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,8 @@ Current Capabilities:

Next Goals:

=======

- ``CStruct``-Base class that operates on an ``_cvalue`` cffi struct.
- Cython compatibility

Expand Down
7 changes: 7 additions & 0 deletions tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -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<version>[\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:
Expand Down

0 comments on commit addca84

Please sign in to comment.