Skip to content

Commit a85c8fe

Browse files
committed
release 2.14.0
1 parent 80abf3f commit a85c8fe

File tree

4 files changed

+22
-5
lines changed

4 files changed

+22
-5
lines changed

Changes.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
Version 2.14.0
2+
2024-14.0
3+
4+
* UP parser
5+
* Updates : adding obl:arg relation, better treatment of fixed + copula,
6+
upos=X for foreign and afgebr- cases adding Foreign=Yes attribute
7+
* Fixing issues for version 2.14 release, now also including WR-P-E-I
8+
sentences
9+
* other
10+
* alpinods v1.16.2 -> v1.16.4
11+
* cmd/alud, cmd-dact: fast, parallel processing
12+
113
Version 2.13.0
214
2023-09-14
315

codemeta.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"sameAs": "https://tools.clariah.nl/alud",
1414
"dateCreated": "2019-06-30",
1515
"datePublished": "2019-11-27",
16-
"dateModified": "2023-09-14",
17-
"version": "2.13.0",
16+
"dateModified": "2024-04-24",
17+
"version": "2.14.0",
1818
"releaseNotes": "https://github.com/rug-compling/alud/blob/master/Changes.txt",
1919
"codeRepository": "https://github.com/rug-compling/alud.git",
2020
"readme": "https://github.com/rug-compling/alud/blob/master/README.md",

v2/cmd/alud/main.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ func main() {
191191
fmt.Print(result.output)
192192
fmt.Fprint(os.Stderr, result.errors)
193193
}
194-
// signal all is done
194+
// signal collector is done
195195
close(chDone)
196196
}()
197197
}
@@ -246,7 +246,7 @@ func main() {
246246
x(os.Chdir(dir))
247247
}
248248

249-
// wait for go routines to finish
249+
// wait for goroutines
250250
if *opt_r > 1 {
251251
close(chResults) // signal collector all jobs are sent
252252
<-chDone // wait for collector to finish

v2/version.go

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ Zie:
1313
https://semver.org/
1414
https://blog.golang.org/using-go-modules
1515
16+
LET OP:
17+
18+
ook codemeta.json aanpassen
19+
ook Changes.txt aanpassen
20+
1621
*/
1722

18-
const version = "2.13.0"
23+
const version = "2.14.0"

0 commit comments

Comments
 (0)