From 523aa8a1f008bc46d1a917cdda14a136daddef16 Mon Sep 17 00:00:00 2001 From: Konstantin Baierer Date: Wed, 15 Aug 2018 11:02:20 +0200 Subject: [PATCH] v0.7.4 fix https://github.com/OCR-D/assets/issues/11 --- CHANGELOG.md | 7 +++++++ ocrd/constants.py | 2 +- setup.py | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9f5023b2e..fb37cd49f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,12 @@ Versioned according to [Semantic Versioning](http://semver.org/). ## Unreleased +## [0.7.4] - 2019-08-15 + +Fixed: + + * Sort coordinates clockwise, #159, https://github.com/OCR-D/assets/issues/11 + ## [0.7.3] - 2019-08-14 Changed: @@ -241,6 +247,7 @@ Fixed Initial Release +[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 [0.7.1]: ../../compare/v0.7.1...v0.7.0 diff --git a/ocrd/constants.py b/ocrd/constants.py index 223d78409..8e7667a7b 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.3' +VERSION = '0.7.4' TMP_PREFIX = 'pyocrd-' diff --git a/setup.py b/setup.py index 67b25fbde..75c9ec7fe 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='ocrd', - version='0.7.3', + version='0.7.4', description='OCR-D framework', long_description=README, author='Kay-Michael Würzner, Konstantin Baierer',