Skip to content

Commit

Permalink
release 2.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
pebbe committed Apr 24, 2024
1 parent 80abf3f commit a85c8fe
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 5 deletions.
12 changes: 12 additions & 0 deletions Changes.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Version 2.14.0
2024-14.0

* UP parser
* Updates : adding obl:arg relation, better treatment of fixed + copula,
upos=X for foreign and afgebr- cases adding Foreign=Yes attribute
* Fixing issues for version 2.14 release, now also including WR-P-E-I
sentences
* other
* alpinods v1.16.2 -> v1.16.4
* cmd/alud, cmd-dact: fast, parallel processing

Version 2.13.0
2023-09-14

Expand Down
4 changes: 2 additions & 2 deletions codemeta.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
"sameAs": "https://tools.clariah.nl/alud",
"dateCreated": "2019-06-30",
"datePublished": "2019-11-27",
"dateModified": "2023-09-14",
"version": "2.13.0",
"dateModified": "2024-04-24",
"version": "2.14.0",
"releaseNotes": "https://github.com/rug-compling/alud/blob/master/Changes.txt",
"codeRepository": "https://github.com/rug-compling/alud.git",
"readme": "https://github.com/rug-compling/alud/blob/master/README.md",
Expand Down
4 changes: 2 additions & 2 deletions v2/cmd/alud/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ func main() {
fmt.Print(result.output)
fmt.Fprint(os.Stderr, result.errors)
}
// signal all is done
// signal collector is done
close(chDone)
}()
}
Expand Down Expand Up @@ -246,7 +246,7 @@ func main() {
x(os.Chdir(dir))
}

// wait for go routines to finish
// wait for goroutines
if *opt_r > 1 {
close(chResults) // signal collector all jobs are sent
<-chDone // wait for collector to finish
Expand Down
7 changes: 6 additions & 1 deletion v2/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,11 @@ Zie:
https://semver.org/
https://blog.golang.org/using-go-modules
LET OP:
ook codemeta.json aanpassen
ook Changes.txt aanpassen
*/

const version = "2.13.0"
const version = "2.14.0"

0 comments on commit a85c8fe

Please sign in to comment.