diff --git a/CHANGELOG.md b/CHANGELOG.md index fb37cd49f..c0307d1e5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ Versioned according to [Semantic Versioning](http://semver.org/). ## Unreleased +## [0.7.5] - 2019-08-16 + +Fixed: + + * bashlib: invalid parsers caused cryptic error, #161 + ## [0.7.4] - 2019-08-15 Fixed: @@ -247,6 +253,7 @@ Fixed Initial Release +[0.7.5]: ../../compare/v0.7.5...v0.7.4 [0.7.4]: ../../compare/v0.7.4...v0.7.3 [0.7.3]: ../../compare/v0.7.3...v0.7.2 [0.7.2]: ../../compare/v0.7.2...v0.7.1 diff --git a/ocrd/constants.py b/ocrd/constants.py index 8e7667a7b..464f53772 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.4' +VERSION = '0.7.5' TMP_PREFIX = 'pyocrd-' diff --git a/setup.py b/setup.py index 75c9ec7fe..a7b01058a 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='ocrd', - version='0.7.4', + version='0.7.5', description='OCR-D framework', long_description=README, author='Kay-Michael Würzner, Konstantin Baierer',