Skip to content

Commit

Permalink
Point releases
Browse files Browse the repository at this point in the history
  • Loading branch information
DRMacIver committed Apr 7, 2015
1 parent 8679d3d commit 5e2ade7
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 9 deletions.
16 changes: 16 additions & 0 deletions docs/changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,22 @@ on pip.
All Hypothesis releases since 1.0 are `semantically versioned <http://semver.org/>`,
with everything in this documentation considered public API.

------------------
1.1.1 - 2015-04-07
------------------

Codename: Nothing to see here

This is just a patch release put out because it fixed some internal bugs that would
block the Django integration release but did not actually affect anything anyone could
previously have been using. It also contained a minor quality fix for floats that
I'd happened to have finished in time.

* Fix some internal bugs with object lifecycle management that were impossible to
hit with the previously released versions but broke hypothesis-django.
* Bias floating point numbers somewhat less aggressively towards very small numbers


------------------
1.1.0 - 2015-04-06
------------------
Expand Down
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='1.1.0',
version='1.1.1',
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==1.1.0",
"hypothesis==1.1.1",
"pytz",
],
long_description=open(README).read(),
Expand Down
4 changes: 2 additions & 2 deletions hypothesis-extra/hypothesis-django/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-django',
version='0.1.1',
version='0.1',
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 Django testing to Hypothesis',
install_requires=[
"hypothesis==1.1.0",
"hypothesis==1.1.1",
"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.5.0',
version='0.5.1',
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==1.1.0",
"hypothesis==1.1.1",
"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.6.1',
version='0.6.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==1.1.0",
"hypothesis==1.1.1",
"pytest>=2.6.0,<2.7.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='1.1.0',
version='1.1.1',
author='David R. MacIver',
author_email='david@drmaciver.com',
packages=find_packages(SOURCE),
Expand Down

0 comments on commit 5e2ade7

Please sign in to comment.