From fcf5ff8e2a5e76956df07e84da088a4b1afade2e Mon Sep 17 00:00:00 2001 From: Mathieu Le Marec - Pasquet Date: Fri, 7 Dec 2018 20:00:39 +0300 Subject: [PATCH] preparing release --- CHANGELOG.rst | 12 ++++++++++-- README.rst | 21 +++++++++++---------- release.sh | 2 +- 3 files changed, 22 insertions(+), 13 deletions(-) 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: