Skip to content

Commit

Permalink
fix wrong match type
Browse files Browse the repository at this point in the history
  • Loading branch information
dimus committed Nov 3, 2023
1 parent 70fd39a commit d2b6ed3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

## Unreleased

## [v1.1.5] - 2023-11-03 Fri

- Fix: wrong match type.

## [v1.1.4] - 2023-11-03 Fri

- Add: iNaturalist, VASCAN to the web interface.
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ require (
github.com/dnaeon/go-vcr v1.2.0
github.com/dustin/go-humanize v1.0.1
github.com/gnames/gnfmt v0.4.3
github.com/gnames/gnlib v0.24.0
github.com/gnames/gnlib v0.25.0
github.com/gnames/gnquery v0.3.4
github.com/gnames/gnsys v0.2.3
github.com/gnames/gnuuid v0.1.2
Expand All @@ -24,7 +24,7 @@ require (
require (
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/gnames/gnstats v0.1.0 // indirect
github.com/gnames/gnstats v0.2.1 // indirect
github.com/golang-jwt/jwt v3.2.2+incompatible // indirect
github.com/golang/snappy v0.0.3 // indirect
github.com/google/uuid v1.3.1 // indirect
Expand Down
8 changes: 4 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -68,12 +68,12 @@ github.com/fsnotify/fsnotify v1.6.0 h1:n+5WquG0fcWoWp6xPWfHdbskMCQaFnG6PfBrh1Ky4
github.com/fsnotify/fsnotify v1.6.0/go.mod h1:sl3t1tCWJFWoRz9R8WJCbQihKKwmorjAbSClcnxKAGw=
github.com/gnames/gnfmt v0.4.3 h1:TUbqT+2KsC7qdo2lUICw9vOx2tBDF80ehvBrLZaMMR0=
github.com/gnames/gnfmt v0.4.3/go.mod h1:Nnxb1w0jh+8cit4gVkfSKqH2lA2chImkvSiDvAFhJes=
github.com/gnames/gnlib v0.24.0 h1:hXORe9+3yZNM9JjL10E80E3NxXBClCkeif78yQkTQxc=
github.com/gnames/gnlib v0.24.0/go.mod h1:Tz3QsaUzL97cUPqO/QQ7wVGJYmEP7IlYq0jpZtRn3M0=
github.com/gnames/gnlib v0.25.0 h1:mMmNlzsNeX3hf6akJASGwGUU2H5VP9o+dKowQNQeodE=
github.com/gnames/gnlib v0.25.0/go.mod h1:NpOFjiabjkMM/S/C8semOLlMwH5qc/hqyIGBg5Ty+vA=
github.com/gnames/gnquery v0.3.4 h1:vXvlBWa6rQVGQq5/Hie4TTT4/AhKEwjgYoAX90iak70=
github.com/gnames/gnquery v0.3.4/go.mod h1:vhPRDxkyBUwEgwlFFbULyi0ZuNcfy2uPSYWqUPU92bY=
github.com/gnames/gnstats v0.1.0 h1:qycaVt1ot3MtAZFnguSPXtND/BrKmw5Zhd1vfwcKxOs=
github.com/gnames/gnstats v0.1.0/go.mod h1:wWqpQiTICJRiFpP4jhsraMXdX4SRnRCo+AWkw1jiVvE=
github.com/gnames/gnstats v0.2.1 h1:JAzDwcws6L9xTsHD9uMr1OaUNh9vN+Ghnn2CFRd3Ilo=
github.com/gnames/gnstats v0.2.1/go.mod h1:wWqpQiTICJRiFpP4jhsraMXdX4SRnRCo+AWkw1jiVvE=
github.com/gnames/gnsys v0.2.3 h1:4Qb6jhJJMfLeyhKkela1V2R0cd/Vf8Qn6tqOWOPy/lY=
github.com/gnames/gnsys v0.2.3/go.mod h1:NTE1nKitxH/eJf8f386zqayaUHC6DnqmVODb7XXCsBk=
github.com/gnames/gnuuid v0.1.2 h1:VAaZqggCUaLys86z6bZhDjWn60iVIgX/1vstKgCW0q8=
Expand Down
2 changes: 1 addition & 1 deletion pkg/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package gnverifier

var (
// Version of the gnverifier
Version = "v1.1.4"
Version = "v1.1.5"
// Build timestamp
Build string
)

0 comments on commit d2b6ed3

Please sign in to comment.