Skip to content

Commit b388cb2

Browse files
committed
v1.14.0, changelog, nix etc.
1 parent 662cd0b commit b388cb2

3 files changed

Lines changed: 10 additions & 4 deletions

File tree

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@
22

33
## Unreleased
44

5+
## [v1.14.0] - 2026-01-12 Mon
6+
7+
* Add[#292]: add flattened option for JSON output, add more (optional) details
8+
to CSV/TSV output.
59
* Fix[#227]: Cultivars words show correctly in "words" section.
10+
(PR #300 by @tobymarsden)
611

712
## [v1.13.0] - 2026-01-07 Wed
813

@@ -572,6 +577,7 @@
572577

573578
This document follows [changelog guidelines]
574579

580+
[v1.14.0]: https://github.com/gnames/gnparser/compare/v1.13.0...v1.14.0
575581
[v1.13.0]: https://github.com/gnames/gnparser/compare/v1.12.1...v1.13.0
576582
[v1.12.1]: https://github.com/gnames/gnparser/compare/v1.12.0...v1.12.1
577583
[v1.12.0]: https://github.com/gnames/gnparser/compare/v1.11.10...v1.12.0

default.nix

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

1313
src = lib.cleanSourceWith {
1414
filter = name: type: let
@@ -18,7 +18,7 @@ buildGoModule rec {
1818
src = lib.cleanSource ./.;
1919
};
2020

21-
vendorHash = "sha256-Yl2jBQw7UFq4djhX18/k25Bs81giwBQ1VG0y1uGI1Bc=";
21+
vendorHash = "sha256-NdD9rLZ5pX4M/4OD2zrN42HG+HtH49d1d+yXuLPtn7w=";
2222

2323
buildInputs = [
2424
stdenv

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.13.0"
6+
Version = "v1.14.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)