Re: How to get a specific GO_MODULE tag (MODVERSION)

2023-08-04 Thread Nuno Teixeira
Hello Robert! $ go list -m -f '{{.Version}}' github.com/gopasspw/gopass@8c666a93d844015cca992be0ab0c39992bb096ed $ v1.15.7-0.20230801080807-8c666a93d844 Perfect! I've just noted this awesome cmd and start using it when needed. Thanks very much, Robert Clausecker escreveu no dia quinta, 3/08/2

Re: How to get a specific GO_MODULE tag (MODVERSION)

2023-08-03 Thread Robert Clausecker
Hi Nuno, I use this command: go list -m -f '{{.Version}}' package@githash e.g. go list -m -f '{{.Version}}' github.com/gopasspw/gopass@8c666a93d844015cca992be0ab0c39992bb096ed This works with anything git understands. Most importantly, it also does the right thing for pseudo-versions

Re: How to get a specific GO_MODULE tag (MODVERSION)

2023-08-03 Thread Nuno Teixeira
Hello I've managed to make it to work! Really nice feature. My mistake is that I was using a wrong TS because I didn't adjusted time zone: Commit: Tue Aug 1 *10*:08:07 2023 *+0200* TS: is 20230801*08*0807 -^ not 20230801*10*0807 ^ :) Thanks very much for exp

Re: How to get a specific GO_MODULE tag (MODVERSION)

2023-08-02 Thread Moin Rahman
> On Aug 2, 2023, at 11:18 AM, Nuno Teixeira wrote: > > Hello, > > I'm trying to get access to a go.mod no tagged that contains fixes that I > need to try. > > security/gopass > https://github.com/gopasspw/gopass > and the module that I want to get is fro