Skip to content

Commit ea46d61

Browse files
committed
Bump version to v3.1.0-rc1
Change-Id: I7dca20ef063f6347b04c071575bb01f87955f9c1
1 parent 4d7dace commit ea46d61

File tree

4 files changed

+22
-11
lines changed

4 files changed

+22
-11
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,15 @@
11
# Changelog
22

3+
## [v3.1.0-rc1] - 2025-12-01
4+
5+
### Fixed
6+
7+
- `-o` option for CoNLL-U output
8+
9+
### Added
10+
11+
- integrated support for TreeTagger (`-T treetagger`) and spaCy (`-T spacy`) annotations
12+
313
## [v3.0.0] - 2025-11-27
414

515
### Fixed

Readme.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ After building, a fat jar file will be available at `./app/build/libs/korapxmlto
4141
the executable `korapxmltool`, as well as the symbolic link shortcuts `korapxml2conllu` and `korapxml2krill`, will
4242
be available at `./build/bin/`.
4343

44-
## Command Line Options (v3.0)
44+
## Command Line Options (v3.1)
4545

46-
Key options for korapxmltool v3.0:
46+
Key options for korapxmltool v3.1:
4747

4848
- `-t FORMAT`, `--to FORMAT`: Output format (`zip`, `conllu`, `w2v`, `now`, `krill`)
4949
- `-j N`, `--jobs N`, `--threads N`: Number of threads/jobs to use
@@ -181,25 +181,26 @@ You need to download the pre-trained OpenNLP models from the [OpenNLP model down
181181
./build/bin/korapxmltool -t zip -T opennlp:/usr/local/kl/korap/Ingestion/lib/models/opennlp/de-pos-maxent.bin /tmp/zca24.zip
182182
```
183183

184-
### Tag and lemmatize with TreeTagger
184+
### Tag and lemmatize with integrated TreeTagger
185+
186+
(Requires Docker)
185187

186188
```shell script
187-
./build/bin/korapxmltool -A "docker run --rm -i korap/conllu-treetagger -l french" -t zip app/src/test/resources/wdf19.zip
189+
./build/bin/korapxmltool -T treetagger:german -t zip app/src/test/resources/wdf19.zip
188190
```
189191
See [TreeTagger Docker Image with CoNLL-U Support](https://github.com/KorAP/conllu-treetagger-docker).
190192

191-
### Tag and lemmatize with spaCy directly to a new KorAP-XML ZIP file
192-
193-
This requires the [spaCy Docker Image with CoNLL-U Support](https://gitlab.ids-mannheim.de/KorAP/sota-pos-lemmatizers) and is only available for German.
193+
### Tag and lemmatize with integrated spaCy to CoNLL-U
194194

195+
(Requires Docker)
195196
```shell script
196-
./build/bin/korapxmltool -j4 -A "docker run -e SPACY_USE_DEPENDENCIES=False --rm -i korap/conllu2spacy:latest" -t zip ./app/src/test/resources/goe.zip
197+
./build/bin/korapxmltool -j 1 -T spacy ./app/src/test/resources/goe.zip | less
197198
```
198199

199200
### Tag, lemmatize and dependency parse with spaCy directly to a new KorAP-XML ZIP file
200201

201202
```shell script
202-
./build/bin/korapxmltool -j4 -A "docker run -e SPACY_USE_DEPENDENCIES=True --rm -i korap/conllu2spacy:latest" -t zip ./app/src/test/resources/goe.zip
203+
./build/bin/korapxmltool -P spacy -t zip ./app/src/test/resources/goe.zip
203204
```
204205

205206
### Tag, lemmatize and constituency parse with CoreNLP (3.X) directly to a new KorAP-XML ZIP file

app/src/main/kotlin/de/ids_mannheim/korapxmltools/KorapXmlTool.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ val ZIP_ENTRY_UNIX_MODE = parseInt("644", 8)
6161
@Command(
6262
name = "korapxmltool",
6363
mixinStandardHelpOptions = true,
64-
version = ["korapxmltool v3.0.0"],
64+
version = ["korapxmltool v3.1.0-rc1"],
6565
usageHelpAutoWidth = false,
6666
usageHelpWidth = 200,
6767
description = ["Converts between KorAP-XML ZIP format and formats like CoNLL-U, Krill, word2vec, NOW\n"+

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,4 +5,4 @@ repositories {
55
}
66

77
// Zentrale Projektversion für korapxmltool
8-
version = '3.0.0'
8+
version = '3.1.0-rc1'

0 commit comments

Comments
 (0)