Skip to content

Commit

Permalink
📦 v0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kba committed Aug 22, 2018
1 parent 57e6011 commit 95dc700
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ Versioned according to [Semantic Versioning](http://semver.org/).

## Unreleased

## [0.8.0] - 2018-08-22

Fixed:

* file://-URL will not be "downloaded" if already present, #165
Expand Down Expand Up @@ -262,6 +264,7 @@ Fixed
Initial Release

<!-- link-labels -->
[0.8.0]: ../../compare/v0.8.0...v0.7.5
[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
Expand Down
2 changes: 1 addition & 1 deletion ocrd/constants.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import yaml
from pkg_resources import resource_string, resource_filename

VERSION = '0.7.5'
VERSION = '0.8.0'

TMP_PREFIX = 'pyocrd-'

Expand Down
2 changes: 1 addition & 1 deletion ocrd/processor/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ def input_files(self):
"""
return self.workspace.mets.find_files(fileGrp=self.input_file_grp, groupId=self.group_id)

@deprecated(version='0.7.6', reason="Use self.workspace.add_file directly. See https://github.com/OCR-D/core/issues/166.")
@deprecated(version='0.8.0', reason="Use self.workspace.add_file directly. See https://github.com/OCR-D/core/issues/166.")
def add_output_file(self, basename=None, file_grp=None, ID=None, **kwargs):
"""
DEPRECATED
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

setup(
name='ocrd',
version='0.7.5',
version='0.8.0',
description='OCR-D framework',
long_description=README,
author='Kay-Michael Würzner, Konstantin Baierer',
Expand Down

0 comments on commit 95dc700

Please sign in to comment.