diff --git a/CHANGES.md b/CHANGES.md index d24402f..d1f8d7e 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -6,6 +6,9 @@ core specification version. Versions 1.0.x implement the v1.0 ResourceSync specification which was standardized as ANSI/NISO Z39.99-2014 . +v1.x.x 2017-??-?? + * ... + v1.0.6 2017-03-20 * Fixed md5 hash format (https://github.com/resync/resync/issues/25) * Added support for sha-1 and sha-256 hashes diff --git a/resync/_version.py b/resync/_version.py index b739a7b..0f1c79c 100644 --- a/resync/_version.py +++ b/resync/_version.py @@ -3,4 +3,4 @@ # Format: x.y.z where # x.y is spec version, see http://www.openarchives.org/rs/x.y/ # z is incremented for revisions within that version, 1... -__version__ = '1.0.6' +__version__ = '1.0.7' diff --git a/setup.py b/setup.py index 7e75f6f..51288c2 100644 --- a/setup.py +++ b/setup.py @@ -63,10 +63,12 @@ setup( install_requires=[ "requests", "python-dateutil>=1.5", - "defusedxml>=0.4.1", - "testfixtures" + "defusedxml>=0.4.1" ], test_suite="tests", + tests_require=[ + "testfixtures" + ], cmdclass={ 'coverage': Coverage }