Skip to content

Commit a0ff3ce

Browse files
committed
Merge branch 'develop'
2 parents 9520489 + 3399d2e commit a0ff3ce

20 files changed

Lines changed: 21 additions & 21 deletions

.github/workflows/mbt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
strategy:
3232
matrix:
3333
os: [ubuntu-latest, macos-latest]
34-
compiler: [g++-12, clang++ -std=c++17]
34+
compiler: [g++ -std=c++17, clang++ -std=c++17]
3535

3636
steps:
3737
- name: Cancel Previous Runs

codemeta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"@type": "SoftwareSourceCode",
88
"identifier": "mbt",
99
"name": "mbt",
10-
"version": "3.11",
10+
"version": "3.12",
1111
"description": "MBT is a memory-based tagger-generator and tagger in one. The tagger-generator part can generate a sequence tagger on the basis of a training set of tagged sequences; the tagger part can tag new sequences. MBT can, for instance, be used to generate part-of-speech taggers or chunkers for natural language processing. It has also been used for named-entity recognition, information extraction in domain-specific texts, and disfluency chunking in transcribed speech. ",
1212
"license": "https://spdx.org/licenses/GPL-3.0",
1313
"url": "https://languagemachines.github.io/mbt",

configure.ac

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Process this file with autoconf to produce a configure script.
33

44
AC_PREREQ([2.69])
5-
AC_INIT([mbt],[3.11],[lamasoftware@science.ru.nl]) #also adapt in codemeta.json!
5+
AC_INIT([mbt],[3.12],[lamasoftware@science.ru.nl]) #also adapt in codemeta.json!
66

77
AM_INIT_AUTOMAKE
88
AC_CONFIG_SRCDIR([.])

include/mbt/Logging.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 1998 - 2024
2+
Copyright (c) 1998 - 2026
33
CLST - Radboud University
44
ILK - Tilburg University
55
CLiPS - University of Antwerp

include/mbt/MbtAPI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 1998 - 2024
2+
Copyright (c) 1998 - 2026
33
CLST - Radboud University
44
ILK - Tilburg University
55
CLiPS - University of Antwerp

include/mbt/Pattern.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 1998 - 2024
2+
Copyright (c) 1998 - 2026
33
CLST - Radboud University
44
ILK - Tilburg University
55
CLiPS - University of Antwerp

include/mbt/Sentence.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 1998 - 2024
2+
Copyright (c) 1998 - 2026
33
CLST - Radboud University
44
ILK - Tilburg University
55
CLiPS - University of Antwerp

include/mbt/TagLex.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 1998 - 2024
2+
Copyright (c) 1998 - 2026
33
CLST - Radboud University
44
ILK - Tilburg University
55
CLiPS - University of Antwerp

include/mbt/Tagger.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 1998 - 2024
2+
Copyright (c) 1998 - 2026
33
CLST - Radboud University
44
ILK - Tilburg University
55
CLiPS - University of Antwerp

src/GenerateTagger.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
Copyright (c) 1998 - 2024
2+
Copyright (c) 1998 - 2026
33
CLST - Radboud University
44
ILK - Tilburg University
55
CLiPS - University of Antwerp

0 commit comments

Comments
 (0)