diff --git a/CHANGELOG.md b/CHANGELOG.md index 34f9fda8a..96d7fbebb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,8 @@ Versioned according to [Semantic Versioning](http://semver.org/). ## Unreleased +## [0.7.1] - 2019-07-25 + Changed: * Remove dependency on `xmllint` command line tool, #72, #151 @@ -227,6 +229,7 @@ Fixed Initial Release +[0.7.1]: ../../compare/v0.7.1...v0.7.0 [0.7.0]: ../../compare/v0.7.0...v0.6.0 [0.6.0]: ../../compare/v0.6.0...v0.5.0 [0.5.0]: ../../compare/v0.5.0...v0.4.4 diff --git a/ocrd/constants.py b/ocrd/constants.py index 1bf302d9c..6731c0d66 100644 --- a/ocrd/constants.py +++ b/ocrd/constants.py @@ -1,7 +1,7 @@ import yaml from pkg_resources import resource_string, resource_filename -VERSION = '0.7.0' +VERSION = '0.7.1' TMP_PREFIX = 'pyocrd-' diff --git a/setup.py b/setup.py index afabf2743..e4f923a19 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='ocrd', - version='0.7.0', + version='0.7.1', description='OCR-D framework', long_description=README, author='Kay-Michael Würzner, Konstantin Baierer',