proteus icon indicating copy to clipboard operation
proteus copied to clipboard

Add latest/current version information on the front page

Open SharkFourSix opened this issue 1 year ago • 1 comments

I pulled the library like this go get -u github.com/jonbodner/proteus and I get version v0.14.0.

The contents of the file in the version that I have are different from what is on github.

https://github.com/jonbodner/proteus/blob/a187783e989939bc6bc2498cd476447947233508/query_mappers.go#L19-L22

My version (v0.14.0)

image

What is the current up to date version?

SharkFourSix avatar Nov 18 '23 17:11 SharkFourSix

@SharkFourSix: What is the current up to date version?

FWIW, changes since the v0.14.0 release: https://github.com/jonbodner/proteus/compare/v0.14.0...master

If you want the latest commit (a187783e989939bc6bc2498cd476447947233508) this should work (pulled the commit hash from https://github.com/jonbodner/proteus/commits/master/):

$ go get github.com/jonbodner/proteus@a187783e989939bc6bc2498cd476447947233508
go: downloading github.com/jonbodner/proteus v0.14.1-0.20230502024600-a187783e9899
go: upgraded github.com/jonbodner/proteus v0.14.0 => v0.14.1-0.20230502024600-a187783e9899

$ cat go.mod
module mytesting

go 1.22.2

require (
        github.com/jonbodner/multierr v1.0.0 // indirect
        github.com/jonbodner/proteus v0.14.1-0.20230502024600-a187783e9899 // indirect
        github.com/jonbodner/stackerr v1.0.0 // indirect
        github.com/rickar/props v1.0.0 // indirect
)

atc0005 avatar Apr 29 '24 10:04 atc0005