diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 1150975..d742cf1 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,8 +4,16 @@ Changelog 5.0.2 (unreleased) ------------------ -- Nothing changed yet. - +- Code quality changes by @evanpurkhiser: + - Remove unused _get_caller_globals_and_locals [@evanpurkhiser] + - Remove single-use bad_length [@evanpurkhiser] + - Remove unused `days` in `proc_month` [@evanpurkhiser] + - Use `field_index` over `i` for readability [@evanpurkhiser] + - Always use `"""` for docstrings [@evanpurkhiser] + - Make helper instance methods that do not use self static [@evanpurkhiser] + - Remove unusd call to sys.exc_info [@evanpurkhiser] + - Remove unused `ALPHAS` [@evanpurkhiser] + - Improve `croniter.expand` documentation [@evanpurkhiser] 5.0.1 (2024-10-29) ------------------ diff --git a/README.rst b/README.rst index 9a38505..6877cfd 100644 --- a/README.rst +++ b/README.rst @@ -375,20 +375,21 @@ Thanks to all who have contributed to this project! If you have contributed and your name is not listed below please let us know. - Aarni Koskela (akx) - - mrmachine - - Hinnack - - shazow - - kiorky - - jlsandell - - mag009 + - chris-baynes - djmitche + - evanpurkhiser - GreatCombinator - - chris-baynes + - Hinnack - ipartola - - yuzawa-san + - jlsandell + - kiorky - lowell80 (Kintyre) - - scop - - zed2015 + - mag009 + - mrmachine - Ryan Finnie (rfinnie) - salitaba + - scop + - shazow + - yuzawa-san + - zed2015 diff --git a/release.sh b/release.sh index fec2545..d89630a 100755 --- a/release.sh +++ b/release.sh @@ -2,5 +2,5 @@ set -ex . venv3/bin/activate fullrelease -git push taichino && git push taichino --tags +git push && git push --tags # vim:set et sts=4 ts=4 tw=80: