Skip to content

Commit

Permalink
📦 v0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kba committed Aug 21, 2020
1 parent e9c9cd8 commit 52cb4ce
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,5 @@ TAGS
env/
env3/
test/assets
/build
/dist
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,13 @@ Versioned according to [Semantic Versioning](http://semver.org/).

## Unreleased

## [0.4.0] - 2020-08-21

Changed:

* adapt to 1-output-file-group convention, use `make_file_id` and `assert_file_grp_cardinality`, #17
* set pcGtsId to file ID, #17

<!-- link-labels -->
[0.4.0]: ../../compare/v0.4.0...v0.3.1
[0.3.1]: ../../compare/HEAD...v0.3.1
2 changes: 1 addition & 1 deletion ocrd_keraslm/wrapper/ocrd-tool.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"git_url": "https://github.com/OCR-D/ocrd_keraslm",
"version": "0.3.1",
"version": "0.4.0",
"tools": {
"ocrd-keraslm-rate": {
"executable": "ocrd-keraslm-rate",
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,18 @@
- ocrd-keraslm-rate
"""
import codecs
import json

from setuptools import setup, find_packages

with codecs.open('README.md', encoding='utf-8') as f:
README = f.read()
with open('ocrd-tool.json', 'r') as f:
version = json.load(f)['version']

setup(
name='ocrd_keraslm',
version='0.3.2',
version=version,
description='character-level language modelling in Keras',
long_description=README,
long_description_content_type='text/markdown',
Expand Down

0 comments on commit 52cb4ce

Please sign in to comment.