diff --git a/hypothesis-python/RELEASE.rst b/hypothesis-python/RELEASE.rst deleted file mode 100644 index ec693dbe45..0000000000 --- a/hypothesis-python/RELEASE.rst +++ /dev/null @@ -1,7 +0,0 @@ -RELEASE_TYPE: patch - -This patch fixes a rare internal error in the :func:`hypothesis.strategies.datetimes` -strategy, where the implementation of ``allow_imaginary=False`` crashed when checking -a time during the skipped hour of a DST transition *if* the DST offset is negative - -only true of ``Europe/Dublin``, who we presume have their reasons - and the ``tzinfo`` -object is a :pypi:`pytz` timezone (which predates :pep:`495`). diff --git a/hypothesis-python/docs/changes.rst b/hypothesis-python/docs/changes.rst index 324e7e9a56..3220d861f6 100644 --- a/hypothesis-python/docs/changes.rst +++ b/hypothesis-python/docs/changes.rst @@ -18,6 +18,18 @@ Hypothesis 6.x .. include:: ../RELEASE.rst +.. _v6.24.5: + +------------------- +6.24.5 - 2021-11-16 +------------------- + +This patch fixes a rare internal error in the :func:`hypothesis.strategies.datetimes` +strategy, where the implementation of ``allow_imaginary=False`` crashed when checking +a time during the skipped hour of a DST transition *if* the DST offset is negative - +only true of ``Europe/Dublin``, who we presume have their reasons - and the ``tzinfo`` +object is a :pypi:`pytz` timezone (which predates :pep:`495`). + .. _v6.24.4: ------------------- diff --git a/hypothesis-python/src/hypothesis/version.py b/hypothesis-python/src/hypothesis/version.py index f00f2f22a1..cb17cdd188 100644 --- a/hypothesis-python/src/hypothesis/version.py +++ b/hypothesis-python/src/hypothesis/version.py @@ -13,5 +13,5 @@ # # END HEADER -__version_info__ = (6, 24, 4) +__version_info__ = (6, 24, 5) __version__ = ".".join(map(str, __version_info__))