diff --git a/CHANGELOG.md b/CHANGELOG.md index 97535e137..a9e969f61 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,18 @@ Versioned according to [Semantic Versioning](http://semver.org/). ## Unreleased +## [1.0.0b1] - 2019-02-27 + +First beta of 1.0.0 + Changed: + * :fire: Drop Python2 support + * :fire: Refactored project into 5 modules with little dependencies each + * Implement 3.2.0 of the spec + +Removed: + * :fire: Move factory methods from OcrdPage and OcrdExif to new module `ocrd.model_factory` * Factor out XML constants to `ocrd.constants.xml` * :fire: BaseProcessor.add_output_file removed @@ -438,6 +448,7 @@ Fixed Initial Release +[1.0.0b1]: ../../compare/v1.0.0b1...v0.15.2 [0.15.2]: ../../compare/v0.15.2...v0.15.1 [0.15.1]: ../../compare/v0.15.1...v0.15.0 [0.14.0]: ../../compare/v0.14.0...v0.13.3 diff --git a/ocrd_utils/setup.py b/ocrd_utils/setup.py index e3d25631e..e7dadc40a 100644 --- a/ocrd_utils/setup.py +++ b/ocrd_utils/setup.py @@ -3,7 +3,7 @@ setup( name='ocrd_utils', - version='1.0.0a4', + version='1.0.0b1', description='OCR-D framework - shared code, helpers, constants', long_description=open('README.md').read(), long_description_content_type='text/markdown',