Bump version

This commit is contained in:
Simeon Warner 2017-03-20 19:09:26 -04:00
parent ac765b27ab
commit 4101ec5d9e
3 changed files with 8 additions and 3 deletions

View File

@ -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
<http://www.openarchives.org/rs/1.0/toc>.
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

View File

@ -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'

View File

@ -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
}