Skip to content

Commit

Permalink
Bump hypothesis-python version to 4.25.0 and update changelog
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
DRMacIver committed Jul 3, 2019
1 parent 99dfe7d commit 4e065f9
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 7 deletions.
5 changes: 0 additions & 5 deletions hypothesis-python/RELEASE.rst

This file was deleted.

10 changes: 10 additions & 0 deletions hypothesis-python/docs/changes.rst
Expand Up @@ -21,6 +21,16 @@ Hypothesis APIs come in three flavours:
You should generally assume that an API is internal unless you have specific
information to the contrary.

.. _v4.25.0:

-------------------
4.25.0 - 2019-07-03
-------------------

This release deprecates and disables the ``buffer_size`` setting,
which should have been treated as a private implementation detail
all along. We recommend simply deleting this settings argument.

.. _v4.24.6:

-------------------
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/_settings.py
Expand Up @@ -460,7 +460,7 @@ def _max_examples_validator(x):
validator=lambda x: _ensure_positive_int(x, "buffer_size", since="2019-03-06"),
description="The buffer_size setting has been deprecated and no longer does anything.",
deprecation_message="The buffer_size setting can safely be removed with no effect.",
deprecated_since="RELEASEDAY",
deprecated_since="2019-07-03",
)


Expand Down
2 changes: 1 addition & 1 deletion hypothesis-python/src/hypothesis/version.py
Expand Up @@ -17,5 +17,5 @@

from __future__ import absolute_import, division, print_function

__version_info__ = (4, 24, 6)
__version_info__ = (4, 25, 0)
__version__ = ".".join(map(str, __version_info__))

0 comments on commit 4e065f9

Please sign in to comment.