From 9b021e685ec477142ab514f8921e0d3ce816c083 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9my=20HUBSCHER?= Date: Wed, 27 Jan 2016 17:38:56 +0100 Subject: [PATCH] Preparing release 1.5.0 --- CHANGELOG.rst | 15 +++++++++++++-- dev-requirements.txt | 1 - docs/conf.py | 4 ++-- requirements.txt | 43 ++++++++++++++++++++++--------------------- setup.py | 12 ++++++------ 5 files changed, 43 insertions(+), 32 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 3058545..0d1a3c3 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,10 +4,21 @@ CHANGELOG This document describes changes between each past release. -1.5.0 (unreleased) +1.5.0 (2016-01-27) ------------------ -- Nothing changed yet. +**Protocol** + +- Make sure batch always return 200 except for 5xx errors. (#78) + +**Bug fixes** + +- Fix If-None-Match header format (#76) + +**Internal changes** + +- Add a Dockerfile (#77) +- Remode documentation warnings (#74) 1.4.0 (2015-11-17) diff --git a/dev-requirements.txt b/dev-requirements.txt index bc4161b..9519f5f 100644 --- a/dev-requirements.txt +++ b/dev-requirements.txt @@ -7,4 +7,3 @@ requests nose nose-cov nose-mocha-reporter -https://github.com/mozilla-services/cliquet/archive/master.zip diff --git a/docs/conf.py b/docs/conf.py index 7670ba4..fa25082 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -69,9 +69,9 @@ # built documents. # # The short X.Y version. -version = '1.4' +version = '1.5' # The full version, including alpha/beta/rc tags. -release = '1.4.0' +release = '1.5.0' # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. diff --git a/requirements.txt b/requirements.txt index 5a023b0..46048c3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,45 +1,46 @@ -cffi==1.3.0 -cliquet==2.11.0 -colander==1.0 -cornice==1.1.0 -cryptography==1.1 -enum34==1.0.4 +cffi==1.5.0 +cliquet==2.15.0 +colander==1.2 +contextlib2==0.5.1 +cornice==1.2.0 +cryptography==1.2.1 +enum34==1.1.2 hawkauthlib==0.1.1 hkdf==0.0.3 idna==2.0 -ipaddress==1.0.15 +ipaddress==1.0.16 iso8601==0.1.11 -mohawk==0.3.0 +mohawk==0.3.1 ndg-httpsclient==0.4.0 -newrelic==2.58.0.43 +newrelic==2.60.0.46 PasteDeploy==1.5.2 pyasn1==0.1.9 PyBrowserID==0.9.2 pycparser==2.14 -PyFxA==0.0.9 -PyNaCl==0.3.0 +PyFxA==0.1.1 +PyNaCl==1.0.1 pyOpenSSL==0.15.1 -pyramid==1.5.7 -pyramid-multiauth==0.5.0 -pyramid-tm==0.12 +pyramid==1.6 +pyramid-multiauth==0.6.0 +pyramid-tm==0.12.1 python-dateutil==2.4.2 -raven==5.8.1 +raven==5.10.1 redis==2.10.5 repoze.lru==0.6 -requests==2.8.1 -requests-hawk==0.2.1 +requests==2.9.1 +requests-hawk==1.0.0 simplejson==3.8.1 six==1.10.0 statsd==3.2.1 structlog==15.3.0 -syncclient==0.7.0 +syncclient==0.8.0 transaction==1.4.4 translationstring==1.3 -ujson==1.33 +ujson==1.35 venusian==1.0 waitress==0.8.10 WebOb==1.5.1 -Werkzeug==0.11.2 -wheel==0.24.0 +Werkzeug==0.11.3 +wheel==0.26.0 zope.deprecation==4.1.2 zope.interface==4.1.3 diff --git a/setup.py b/setup.py index 23bd2b5..aa892fe 100644 --- a/setup.py +++ b/setup.py @@ -13,11 +13,11 @@ REQUIREMENTS = [ - 'waitress', - 'cliquet[monitoring]', - 'hkdf', - 'PyNaCl', - 'syncclient', + 'waitress>=0.8,<0.9', + 'cliquet[monitoring]>=2.15,<2.16', + 'hkdf==0.0.3', + 'PyNaCl>=1.0,<1.1', + 'syncclient>=0.8,<0.9', ] if PY2: @@ -33,7 +33,7 @@ ]} setup(name='syncto', - version='1.5.0.dev0', + version='1.5.0', description='Read Firefox Sync server using Kinto API.', long_description=README + "\n\n" + CHANGELOG, license='Apache License (2.0)',