From e0a00dcc91f6d9b65d4eef58a6dcf20169ce9f6b Mon Sep 17 00:00:00 2001 From: Romain Dorgueil Date: Sat, 10 Jun 2017 13:57:27 +0200 Subject: [PATCH] release: 0.3.2 --- Makefile | 2 +- bonobo/_version.py | 2 +- docs/changelog.rst | 15 +++++++++++++++ requirements-dev.txt | 7 +++---- requirements-jupyter.txt | 4 ++-- requirements.txt | 4 ++-- tests/test_config_method.py | 2 -- 7 files changed, 24 insertions(+), 12 deletions(-) diff --git a/Makefile b/Makefile index a1d49da..cf01a16 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ # This file has been auto-generated. # All changes will be lost, see Projectfile. # -# Updated at 2017-05-28 12:24:17.298429 +# Updated at 2017-06-10 13:54:56.092476 PACKAGE ?= bonobo PYTHON ?= $(shell which python) diff --git a/bonobo/_version.py b/bonobo/_version.py index e1424ed..73e3bb4 100644 --- a/bonobo/_version.py +++ b/bonobo/_version.py @@ -1 +1 @@ -__version__ = '0.3.1' +__version__ = '0.3.2' diff --git a/docs/changelog.rst b/docs/changelog.rst index c386ff7..5fe968b 100644 --- a/docs/changelog.rst +++ b/docs/changelog.rst @@ -1,6 +1,21 @@ Changelog ========= +v.0.3.2 - 10 june 2017 +:::::::::::::::::::::: + +Weekly maintenance release. + +* Updated frozen version numbers in requirements. + + * pytest==3.1.1 + * requests==2.17.3 + * sphinx==1.6.2 + * stevedore==1.22.0 + + Note: this does not change anything when used as a dependency if you freeze your requirements, as the setup.py + requirement specifiers did not change. + v.0.3.1 - 28 may 2017 ::::::::::::::::::::: diff --git a/requirements-dev.txt b/requirements-dev.txt index c7a14c6..e604a97 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -2,23 +2,22 @@ alabaster==0.7.10 babel==2.4.0 certifi==2017.4.17 -chardet==3.0.3 +chardet==3.0.4 coverage==4.4.1 docutils==0.13.1 idna==2.5 imagesize==0.7.1 jinja2==2.9.6 markupsafe==1.0 -py==1.4.33 +py==1.4.34 pygments==2.2.0 pytest-cov==2.5.1 pytest-timeout==1.2.0 -pytest==3.1.1 +pytest==3.1.2 pytz==2017.2 requests==2.17.3 six==1.10.0 snowballstemmer==1.2.1 sphinx==1.6.2 sphinxcontrib-websupport==1.0.1 -typing==3.6.1 urllib3==1.21.1 diff --git a/requirements-jupyter.txt b/requirements-jupyter.txt index 1e98481..7db4a67 100644 --- a/requirements-jupyter.txt +++ b/requirements-jupyter.txt @@ -2,11 +2,11 @@ appnope==0.1.0 bleach==2.0.0 decorator==4.0.11 -entrypoints==0.2.2 +entrypoints==0.2.3 html5lib==0.999999999 ipykernel==4.6.1 ipython-genutils==0.2.0 -ipython==6.0.0 +ipython==6.1.0 ipywidgets==6.0.0 jedi==0.10.2 jinja2==2.9.6 diff --git a/requirements.txt b/requirements.txt index 8e999c2..b4cef9e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ -e . appdirs==1.4.3 certifi==2017.4.17 -chardet==3.0.3 +chardet==3.0.4 colorama==0.3.9 enum34==1.1.6 fs==2.0.3 @@ -11,5 +11,5 @@ psutil==5.2.2 pytz==2017.2 requests==2.17.3 six==1.10.0 -stevedore==1.22.0 +stevedore==1.23.0 urllib3==1.21.1 diff --git a/tests/test_config_method.py b/tests/test_config_method.py index 13eb873..3a5f6a3 100644 --- a/tests/test_config_method.py +++ b/tests/test_config_method.py @@ -28,8 +28,6 @@ def test_define_with_decorator(): def Concrete(self, *args, **kwargs): calls.append((args, kwargs, )) - print('handler', Concrete.handler) - assert callable(Concrete.handler) t = Concrete('foo', bar='baz')