Skip to content

Latest commit

 

History

History
47 lines (31 loc) · 1 KB

CHANGELOG.md

File metadata and controls

47 lines (31 loc) · 1 KB

Changelog

0.3.2

  • Upgraded dependencies
  • Updated supported Python versions

0.3.1

  • Fix issue #3

0.3.0

  • Add language support for FR, IT, NL

0.2.0

  • Improve quote handling of highlights with notes
  • Extract notes writer to separate module
  • Improve type-safety
  • Improve VSCode development environment

0.1.0

  • Update README and added CHANGELOG
  • Update pyproject.toml

0.0.1

  • Initial version

Release process

  • Finish development on branch and merge to main
  • Finalize CHANGELOG.md, bump version number in pyproject.toml and commit
  • Do a full build running make build
  • Run
VERSION=$( poetry version --short ) &&\
echo "Release: ${VERSION}" &&\
git tag -a ${VERSION} -m "Version ${VERSION}" &&\
git push --tags