Skip to content

Commit 75ffab3

Browse files
committed
v1.13.0
1 parent 59020a5 commit 75ffab3

3 files changed

Lines changed: 26 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## Unreleased
44

5+
## [v1.13.0] - 2026-01-07 Wed
6+
7+
* Add[#298]: update CONTRIBUTING.md to reflect changes in gnparser's code.
8+
* Add[#297]: rename NomCode field to NomCodeSettin to clarify its intention.
9+
**WARNING** this creates some backward incompatibility.
10+
* Add[#294]: option to remove spaces between authors' names initials (PR
11+
#295 by @juillerat)
12+
* Fix[#296]: old virus names are marked as 'Virus' when nomenclatural code
13+
is set to 'icvcn'.
14+
515
## [v1.12.1] - 2025-12-19 Fri
616

717
* Add: virus code for web UI.
@@ -560,6 +570,7 @@
560570

561571
This document follows [changelog guidelines]
562572

573+
[v1.13.0]: https://github.com/gnames/gnparser/compare/v1.12.1...v1.13.0
563574
[v1.12.1]: https://github.com/gnames/gnparser/compare/v1.12.0...v1.12.1
564575
[v1.12.0]: https://github.com/gnames/gnparser/compare/v1.11.10...v1.12.0
565576
[v1.11.10]: https://github.com/gnames/gnparser/compare/v1.11.9...v1.11.10
@@ -649,9 +660,18 @@ This document follows [changelog guidelines]
649660
[v0.7.0]: https://github.com/gnames/gnparser/compare/v0.6.0...v0.7.0
650661
[v0.6.0]: https://github.com/gnames/gnparser/compare/v0.5.1...v0.6.0
651662
[v0.5.1]: https://github.com/gnames/gnparser/tree/v0.5.1
652-
[#291]: https://github.com/gnames/gnparser/issues/288
653-
[#290]: https://github.com/gnames/gnparser/issues/288
654-
[#289]: https://github.com/gnames/gnparser/issues/288
663+
[#300]: https://github.com/gnames/gnparser/issues/300
664+
[#299]: https://github.com/gnames/gnparser/issues/299
665+
[#298]: https://github.com/gnames/gnparser/issues/298
666+
[#297]: https://github.com/gnames/gnparser/issues/297
667+
[#296]: https://github.com/gnames/gnparser/issues/296
668+
[#295]: https://github.com/gnames/gnparser/issues/295
669+
[#294]: https://github.com/gnames/gnparser/issues/294
670+
[#293]: https://github.com/gnames/gnparser/issues/293
671+
[#292]: https://github.com/gnames/gnparser/issues/292
672+
[#291]: https://github.com/gnames/gnparser/issues/291
673+
[#290]: https://github.com/gnames/gnparser/issues/290
674+
[#289]: https://github.com/gnames/gnparser/issues/289
655675
[#288]: https://github.com/gnames/gnparser/issues/288
656676
[#287]: https://github.com/gnames/gnparser/issues/287
657677
[#286]: https://github.com/gnames/gnparser/issues/286

default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
}:
88
buildGoModule rec {
99
pname = "gnparser";
10-
version = "v1.12.1";
11-
date = "2025-12-20";
10+
version = "v1.13.0";
11+
date = "2026-01-07";
1212

1313
src = lib.cleanSourceWith {
1414
filter = name: type: let

version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package gnparser
33
var (
44
// Version is the version of the gnparser package. When Makefile is
55
// used, the version is calculated out of Git tags.
6-
Version = "v1.12.1"
6+
Version = "v1.13.0"
77
// Build is a timestamp of when Makefile was used to compile
88
// the gnparser code. If go build was used, Build stays empty.
99
Build string

0 commit comments

Comments
 (0)