diff --git a/CHANGELOG.md b/CHANGELOG.md index 459274e2d4..124290dbcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,15 +7,25 @@ Versioned according to [Semantic Versioning](http://semver.org/). ## [unreleased] Added +Changed +Fixed +Removed + +## [0.2.5] - 2018-06-18 + +Added + * Bash library * CLI command `ocrd-tool` * CLI command `workspace find` * CLI command `workspace list-group` * CLI command `workspace create` * CLI `workspace` flag --no-cache * bash library to build wrappers + * CLI: `--version` global flag Changed + * Downloading a file will set the URL in the METS Fixed -Removed + * run_processor will save_mets after process ## [0.2.4] - 2018-06-04 diff --git a/ocrd/constants.py b/ocrd/constants.py index 85845e958c..41cb42131d 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.2.4' +VERSION = '0.2.5' TMP_PREFIX = 'pyocrd-' diff --git a/setup.py b/setup.py index bc898dcd48..6aa55ed18f 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ setup( name='ocrd', - version='0.2.4', + version='0.2.5', description='OCR-D framework', long_description=README, author='Kay-Michael Würzner, Konstantin Baierer',