Skip to content

Commit

Permalink
parse first section from changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
Evidlo committed Oct 6, 2024
1 parent e312269 commit 475c992
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@ Pipfile.lock
*.kdbx.out
.idea
.venv*
TMPNOTES
14 changes: 7 additions & 7 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
4.1.0 - 2024-06-26
------------------
- merged PR#389 - add PyKeePass.database_name and database_description
- merged PR#392, fixed #390 - fix pkg_resources dependency issue
- merged #389 - add PyKeePass.database_name and database_description
- merged #392, fixed #390 - fix pkg_resources dependency issue
- fixed #391 - Entry.tags returns empty list instead of None
- fixed #395 - set 'encoding' attribute when exporting as XML
- fixed #383 - parse datetimes using isoformat instead of strptime

4.0.7 - 2024-02-29
------------------
- fixed #359 - PyKeePass has `decrypt` kwarg for accessing header info
- merged PR#347 - added Entry.index and Entry.move for moving entries
- merged PR#367 - added Entry.autotype_window setter
- merged PR#364 - allow filename/keyfile to be file-like objects
- merged PR#371 - drop dateutil dependency
- merged PR#348 - switch to pyproject.toml
- merged #347 - added Entry.index and Entry.move for moving entries
- merged #367 - added Entry.autotype_window setter
- merged #364 - allow filename/keyfile to be file-like objects
- merged #371 - drop dateutil dependency
- merged #348 - switch to pyproject.toml

4.0.6 - 2023-08-22
------------------
Expand Down
3 changes: 2 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ release: lock dist
exit 1
fi
# generate release notes from changelog
awk "/---/{next}; /^$${stripped}/{next}; {print} ; /^$$/{exit}" CHANGELOG.rst > TMPNOTES
awk "BEGIN{p=0}; /^$${stripped}/{next}; /---/{p=1;next}; /^$$/{exit}; p {print}" CHANGELOG.rst > TMPNOTES
# make github and pypi release
gh release create --latest --verify-tag v$(version) dist/pykeepass-$(version)* -F TMPNOTES
twine upload -u __token__ dist/pykeepass-$(version)*

Expand Down

0 comments on commit 475c992

Please sign in to comment.