Skip to content

Commit

Permalink
📦 v0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
kba committed May 6, 2020
1 parent 40503db commit e5601f2
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 5 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Change Log
==========
Versioned according to [Semantic Versioning](http://semver.org/).

## Unreleased

## [0.0.2] - 2020-05-06

Fixed:

* Graceful degradation to CPU processing if CUDA not available, #56

<!-- link-labels -->
[0.0.2]: ../../compare/HEAD...v0.0.2
4 changes: 2 additions & 2 deletions ocrd_anybaseocr/ocrd-tool.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"git_url": "https://github.com/mjenckel/LAYoutERkennung/",
"version": "0.0.1",
"git_url": "https://github.com/OCR-D/ocrd_anybaseocr",
"version": "0.0.2",
"tools": {
"ocrd-anybaseocr-binarize": {
"executable": "ocrd-anybaseocr-binarize",
Expand Down
9 changes: 6 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import json
with open('ocrd-tool.json', 'r') as f:
version = json.load(f)['version']

setup(
name='ocrd-anybaseocr',
version='0.0.1',
version=version,
author="DFKI",
author_email="[email protected], [email protected]",
url="https://github.com/mjenckel/LAYoutERkennung",
url="https://github.com/OCR-D/ocrd_anybaseocr",
license='Apache License 2.0',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
Expand All @@ -19,7 +22,7 @@
'console_scripts': [
'ocrd-anybaseocr-binarize = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_binarize',
'ocrd-anybaseocr-deskew = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_deskew',
'ocrd-anybaseocr-crop = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_cropping',
'ocrd-anybaseocr-crop = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_cropping',
'ocrd-anybaseocr-dewarp = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_dewarp',
'ocrd-anybaseocr-tiseg = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_tiseg',
'ocrd-anybaseocr-textline = ocrd_anybaseocr.cli.cli:ocrd_anybaseocr_textline',
Expand Down

1 comment on commit e5601f2

@stweil
Copy link
Contributor

@stweil stweil commented on e5601f2 May 9, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Should ocrd_all be updated to use 0.0.2? When I run a git rebase based on the current commit b67d5bb, I get a merge conflict.

Please sign in to comment.