diff --git a/codemeta.json b/codemeta.json index 11e2d68..bfdeb96 100644 --- a/codemeta.json +++ b/codemeta.json @@ -10,7 +10,7 @@ "@type": "SoftwareSourceCode", "identifier": "piccl", "name": "PICCL", - "version": "0.9.0", + "version": "0.9.1", "description": "A set of workflows for corpus building through OCR, post-correction, and normalisation.", "license": "https://spdx.org/licenses/GPL-3.0", "url": "https://github.com/LanguageMachines/PICCL", diff --git a/webservice/picclservice/picclservice.py b/webservice/picclservice/picclservice.py index e1229c6..c5f00bd 100644 --- a/webservice/picclservice/picclservice.py +++ b/webservice/picclservice/picclservice.py @@ -48,7 +48,7 @@ #An informative description for this system (this should be fairly short, about one paragraph, and may not contain HTML) SYSTEM_DESCRIPTION = "PICCL offers a workflow for corpus building and builds on a variety of tools. The primary component of PICCL is TICCL; a Text-induced Corpus Clean-up system, which performs spelling correction and OCR post-correction (normalisation of spelling variants etc)." -SYSTEM_VERSION = "0.9.0" #also change in codemeta.json and setup.py +SYSTEM_VERSION = "0.9.1" #also change in codemeta.json and setup.py SYSTEM_AUTHOR = "Martin Reynaert, Maarten van Gompel, Ko van der Sloot" diff --git a/webservice/setup.py b/webservice/setup.py index c2f5c70..03551a9 100755 --- a/webservice/setup.py +++ b/webservice/setup.py @@ -10,7 +10,7 @@ setup( name = "PICCL", - version = "0.9.0", #also change in codemeta.json and picclservice.py + version = "0.9.1", #also change in codemeta.json and picclservice.py author = "Martin Reynaert, Maarten van Gompel", author_email = "reynaert@uvt.nl", description = ("Webservice for PICCL; a set of workflows for corpus building through OCR, post-correction, modernization of historic language and Natural Language Processing"),