diff --git a/CHANGELOG.md b/CHANGELOG.md index 25351ca..5af0ec9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,14 @@ Changelog ========= +## 0.4.3 (2016-07-15) + - [api] fix: api expects lower case boolean value in querystring. Closes #32 (#33) + - [feature] Add response in exception (#30, #31) + - [feature] Read custom file on runtime (#29) + - [buildsystem] chore: use find_packages in setup.py instead of hard-coded list + - [buildsystem] fix: drop conflicting d2to1 dependency (closes #25 closes #27) + - [documentation] improv contributing guide (#26) + ## 0.4.2 (2016-04-11) - [buildsystem] fix missing cacert.pem file in package. Closes #23 diff --git a/docs/conf.py b/docs/conf.py index e5aefb5..ce731e8 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,7 +58,7 @@ copyright = u'2013-2014, OVH SAS' # The short X.Y version. version = '0.3' # The full version, including alpha/beta/rc tags. -release = '0.4.2' +release = '0.4.3' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/requirements-dev.txt b/requirements-dev.txt index e7abb37..1d042b9 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -4,7 +4,7 @@ mock==1.0.1 nose==1.3.3 yanc==0.2.4 Sphinx==1.2.2 -coveralls==0.4.2 +coveralls==0.4.3 # Python 2.6 ordereddict==1.0 diff --git a/setup.py b/setup.py index 1f56334..9525eb4 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ except ImportError: setup( name = "ovh", - version = "0.4.2", + version = "0.4.3", setup_requires=['setuptools'], author = "Jean-Tiare Le Bigot", author_email = "jean-tiare.le-bigot@corp.ovh.com",