diff --git a/CHANGELOG.md b/CHANGELOG.md index 96d7fbebb6..2d6b4c8be2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ Versioned according to [Semantic Versioning](http://semver.org/). ## Unreleased +## [0.7.1] - 2019-08-01 + +Fixed + + * Regression in XML pretty printing, #152 + ## [0.7.1] - 2019-07-25 Changed: diff --git a/ocrd/constants.py b/ocrd/constants.py index 6731c0d664..a0a2ca833c 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.1' +VERSION = '0.7.2' TMP_PREFIX = 'pyocrd-' diff --git a/setup.py b/setup.py index e4f923a19c..7fd0e1cc27 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='ocrd', - version='0.7.1', + version='0.7.2', description='OCR-D framework', long_description=README, author='Kay-Michael Würzner, Konstantin Baierer',