Skip to content

Commit

Permalink
CHANGES.txt updates and version bumps for point release
Browse files Browse the repository at this point in the history
  • Loading branch information
DRMacIver committed Mar 22, 2015
1 parent bf6f01c commit 00fe610
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 8 deletions.
10 changes: 10 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -334,3 +334,13 @@ out, and filing off some final rough edges from the API.
* Simultaneous simplification of identical elements in a list. So if a bug
only trickers when you have duplicates but you drew e.g. [-17, -17], this
will now simplify to [0, 0].

0.7.2, "Hygienic macros or bust"

* You can now name an argument to @given 'f' and it won't break (issue #38)
* strategy_test_suite is now named strategy_test_suite as the documentation
claims and not in fact strategy_test_suitee
* Settings objects can now be used as a context manager to temporarily
override the default values inside their context.

* Setting objects can now be used as context managers
4 changes: 2 additions & 2 deletions hypothesis-extra/hypothesis-datetime/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def local_file(name):

setup(
name='hypothesis-datetime',
version='0.3.1',
version='0.3.2',
author='David R. MacIver',
author_email='david@drmaciver.com',
packages=find_packages(SOURCE),
Expand All @@ -47,7 +47,7 @@ def local_file(name):
license='MPL v2',
description='Adds support for generating datetime to Hypothesis',
install_requires=[
"hypothesis==0.7.1",
"hypothesis==0.7.2",
"pytz",
],
long_description=open(README).read(),
Expand Down
2 changes: 1 addition & 1 deletion hypothesis-extra/hypothesis-django/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def local_file(name):
license='MPL v2',
description='Adds support for Django testing to Hypothesis',
install_requires=[
"hypothesis==0.7.1",
"hypothesis==0.7.2",
"django>=1.7",
],
long_description=open(README).read(),
Expand Down
4 changes: 2 additions & 2 deletions hypothesis-extra/hypothesis-fakefactory/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def local_file(name):

setup(
name='hypothesis-fakefactory',
version='0.2.1',
version='0.2.2',
author='David R. MacIver',
author_email='david@drmaciver.com',
packages=find_packages(SOURCE),
Expand All @@ -47,7 +47,7 @@ def local_file(name):
license='MPL v2',
description='Adds support for generating fake-factory data to Hypothesis',
install_requires=[
"hypothesis==0.7.1",
"hypothesis==0.7.2",
"fake-factory==0.4.2",
],
long_description=open(README).read(),
Expand Down
4 changes: 2 additions & 2 deletions hypothesis-extra/hypothesis-pytest/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def run_tests(self):

setup(
name='hypothesis-pytest',
version='0.3.1',
version='0.3.2',
author='David R. MacIver',
author_email='david@drmaciver.com',
packages=find_packages(SOURCE),
Expand All @@ -48,7 +48,7 @@ def run_tests(self):
license='MPL v2',
description='Pytest plugin for better integration with hypothesis',
install_requires=[
"hypothesis==0.7.1",
"hypothesis==0.7.2",
"pytest>=2.6.0,<2.6.99",
],
long_description=open(README).read(),
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ def run_tests(self):

setup(
name='hypothesis',
version='0.7.1',
version='0.7.2',
author='David R. MacIver',
author_email='david@drmaciver.com',
packages=find_packages(SOURCE),
Expand Down

0 comments on commit 00fe610

Please sign in to comment.