Hi,

I created go.mod file from two different go versions 1.12 and 1.13:

module /home/nsaboo/project

go 1.13

require (
github.com/aws/aws-sdk-go v1.8.3-0.20170325041625-2150862edc16
   <<<<<<<<<<<<
github.com/go-ini/ini v1.55.0 // indirect
github.com/jmespath/go-jmespath v0.3.0 // indirect
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20150102060019-636edb2500d2 //
indirect
github.com/xeipuuv/gojsonreference v0.0.0-20150102055932-2df3c0c80243 //
indirect
github.com/xeipuuv/gojsonschema v0.0.0-20150523020227-6ea07b2b0148 //
indirect
gopkg.in/ini.v1 v1.55.0 // indirect
)


module /home/nsaboo/project

go 1.12

require (
github.com/aws/aws-sdk-go v0.0.0-20170325041625-2150862edc16
   <<<<<<<<<<<<<<
github.com/go-ini/ini v1.55.0 // indirect
github.com/jmespath/go-jmespath v0.3.0 // indirect
github.com/smartystreets/goconvey v1.6.4 // indirect
github.com/xeipuuv/gojsonpointer v0.0.0-20150102060019-636edb2500d2 //
indirect
github.com/xeipuuv/gojsonreference v0.0.0-20150102055932-2df3c0c80243 //
indirect
github.com/xeipuuv/gojsonschema v0.0.0-20150523020227-6ea07b2b0148 //
indirect
gopkg.in/ini.v1 v1.55.0 // indirect
)

What I see for *aws/aws-sdk-go *dependency is,  In the case of go1.13 the
pseudo-version is showing *v1.8.3-0* whereas in the case of go1.12 the
pseudo-version is showing *v0.0.0* though the commitid hash and timestamp
is the same in both the cases.

1) Is this expected behavior?

2) Has the pseudo version format/logic changed from go1.12 to go1.13?

Thanks,
Nitish

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/golang-nuts/CALjMrq7Syow9xpHKTs0Yy%3D3FeAmH72v%2BPz%3DKa3u2VH_TynkFLQ%40mail.gmail.com.

Reply via email to