You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It seems that using uconfig causes go mod tidy to fetch v1.2.0 by default. At the very least, on go1.21.5 linux/amd64.
user@hostname > /tmp/foo > vim main.go # here just copy/paste the first full example from the README and remove redis/database references
user@hostname > /tmp/foo > go mod init foo
go: creating new go.mod: module foo
go: to add module requirements and sums:
go mod tidy
user@hostname > /tmp/foo > go mod tidy
go: finding module for package github.com/omeid/uconfig
go: found github.com/omeid/uconfig in github.com/omeid/uconfig v1.2.0
user@hostname > /tmp/foo > go version
go version go1.21.5 linux/amd64
This causes the version of uconfig to be somewhat outdated. I noticed this because the USAGE column was nowhere to be found upon calling .Usage() and decided to investigate a bit. Editing the go.mod to point towards 0.5 instead naturally works.
The text was updated successfully, but these errors were encountered:
Hello,
It seems that using uconfig causes
go mod tidy
to fetch v1.2.0 by default. At the very least, ongo1.21.5 linux/amd64
.This causes the version of
uconfig
to be somewhat outdated. I noticed this because the USAGE column was nowhere to be found upon calling.Usage()
and decided to investigate a bit. Editing thego.mod
to point towards 0.5 instead naturally works.The text was updated successfully, but these errors were encountered: