From bd5bce51805b2ce4eef13ed6b3f5f3baa862beb9 Mon Sep 17 00:00:00 2001 From: Sam Van Oort Date: Mon, 14 Mar 2016 23:12:58 -0400 Subject: [PATCH] Update for next release --- CHANGELOG.md | 5 +++++ setup.py | 5 +++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c2b6b17f..79e991b1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## 1.7.1 Mon Mar 15 23:05:00 2016 -0400 +**Bugfixes:** +* Fix JSONschema extension in Python 3, and add test coverage for it + - Thanks to @BastienAr for reporting it: https://github.com/svanoort/pyresttest/issues/173 + ## 1.7.0 Sat Mar 06 14:30:00 2016 -0400 **Features:** * Unicode support epic: fix handling of request body and a whole raft of smaller fixes + more tests: https://github.com/svanoort/pyresttest/issues/104 diff --git a/setup.py b/setup.py index 6224c018..684956e5 100755 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ test_dependencies.append('discover') setup(name='pyresttest', - version='1.7.1.dev', + version='1.7.1', description='Python RESTful API Testing & Microbenchmarking Tool', long_description='Python RESTful API Testing & Microbenchmarking Tool \n Documentation at https://github.com/svanoort/pyresttest', author='Sam Van Oort', @@ -30,6 +30,7 @@ 'Programming Language :: Python :: 2.6', 'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 3.4', + 'Programming Language :: Python :: 3.5', 'Topic :: Software Development :: Testing', 'Topic :: Software Development :: Quality Assurance', 'Topic :: Utilities' @@ -44,7 +45,7 @@ install_requires=dependencies, tests_require=test_dependencies, extras_require= { - 'JSONPath': ['jsonpath'], + 'JSONSchema': ['jsonschema'], 'JMESPath': ['jmespath'] }, # Make this executable from command line when installed