Skip to content

Commit a9135f0

Browse files
Ko van der SlootKo van der Sloot
authored andcommitted
get ready for another bug fix release
1 parent 56702e5 commit a9135f0

4 files changed

Lines changed: 15 additions & 6 deletions

File tree

NEWS

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,17 @@
1-
0.18.4 - 2019-09-16
1+
0.18.6 - 2019-09-17
2+
[Ko vd Sloot]
3+
Bug fix release.
4+
* should really fix: https://github.com/proycon/tscan/issues/13
5+
6+
0.18.5 - 2019-09-16
27
[Ko vd Sloot]
38
Bug fix release.
49
* Fixes: https://github.com/proycon/tscan/issues/13
510

11+
0.18.4 - 2019-09-16
12+
[Ko vd Sloot]
13+
discarded
14+
615
0.18.3 - 2019-07-22
716
[Ko vd Sloot]
817
Bug fix release:

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
"@type": "SoftwareSourceCode",
1414
"identifier": "frog",
1515
"name": "Frog",
16-
"version": "0.18.4",
16+
"version": "0.18.6",
1717
"description": "Frog is an integration of memory-based natural language processing (NLP) modules developed for Dutch. It performs automatic linguistic enrichment such as part of speech tagging, lemmatisation, named entity recognition, shallow parsing, dependency parsing and morphological analysis. All NLP modules are based on TiMBL.",
1818
"license": "https://spdx.org/licenses/GPL-3.0",
1919
"url": "https://languagemachines.github.io/frog",

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33

44
AC_PREREQ(2.59)
55
#also adapt version number in codemeta.json
6-
AC_INIT([frog], [0.18.4], [lamasoftware@science.ru.nl]) #adapt version number in codemeta.json as well
6+
AC_INIT([frog], [0.18.6], [lamasoftware@science.ru.nl]) #adapt version number in codemeta.json as well
77
AM_INIT_AUTOMAKE
88
AC_CONFIG_SRCDIR([configure.ac])
99
AC_CONFIG_MACRO_DIR([m4])

src/FrogAPI.cxx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1786,11 +1786,11 @@ vector<string> get_compound_analysis( folia::Word* word ){
17861786
layer->select<folia::Morpheme>( Mbma::mbma_tagset, false );
17871787
if ( m.size() == 1 ) {
17881788
// check for top layer compound
1789-
try {
1790-
folia::PosAnnotation *tag = m[0]->annotation<folia::PosAnnotation>( Mbma::clex_tagset );
1789+
folia::PosAnnotation *tag = m[0]->annotation<folia::PosAnnotation>( Mbma::clex_tagset );
1790+
if ( tag ){
17911791
result.push_back( tag->feat( "compound" ) ); // might be empty
17921792
}
1793-
catch (...){
1793+
else {
17941794
result.push_back( "" ); // pad with empty strings
17951795
}
17961796
}

0 commit comments

Comments
 (0)