Re: [go-nuts] Re: Pseudo version showing different in go1.12 and go1.13

2020-04-08 Thread Nitish Saboo
Thankyou Sean. Thanks, Nitish On Sun, 5 Apr 2020, 18:27 Sean Liao, wrote: > yes > > go1.12 and earlier used v0.0.0-x... for all cases > go1.13 and later uses different formats depending on the situation > > the change was mentioned in the release notes > https://golang.org/doc/go1.13#version-va

Re: [go-nuts] Re: Pseudo version showing different in go1.12 and go1.13

2020-04-05 Thread Sean Liao
yes go1.12 and earlier used v0.0.0-x... for all cases go1.13 and later uses different formats depending on the situation the change was mentioned in the release notes https://golang.org/doc/go1.13#version-validation and the current formats and when they are used are in the help pages https://gola

Re: [go-nuts] Re: Pseudo version showing different in go1.12 and go1.13

2020-04-05 Thread Nitish Saboo
Hi Sean, Thank you for your response. I hope you meant '*yes*' for both the questions that I had postedam I right? Thanks, Nitish On Sat, Apr 4, 2020 at 8:39 PM Sean Liao wrote: > yes > > On Sat, Apr 4, 2020, 17:07 Nitish Saboo wrote: > >> Hi Sean, >> >> Thank you for your response. >> T

Re: [go-nuts] Re: Pseudo version showing different in go1.12 and go1.13

2020-04-04 Thread Sean Liao
yes On Sat, Apr 4, 2020, 17:07 Nitish Saboo wrote: > Hi Sean, > > Thank you for your response. > The pseudo version that I am getting in go-1.13 is 'v1.8.3-0' and if you > see there is a "-0" in the pseudo version. > Whereas, > The pseudo version that I am getting in go-1.12 is 'v0.0.0' . > > 1)

Re: [go-nuts] Re: Pseudo version showing different in go1.12 and go1.13

2020-04-04 Thread Nitish Saboo
Hi Sean, Thank you for your response. The pseudo version that I am getting in go-1.13 is 'v1.8.3-0' and if you see there is a "-0" in the pseudo version. Whereas, The pseudo version that I am getting in go-1.12 is 'v0.0.0' . 1)We get such outputs only when the dependency version that is being use

[go-nuts] Re: Pseudo version showing different in go1.12 and go1.13

2020-04-03 Thread Sean Liao
> (This was originally the only form, so some older go.mod files use this form even for commits that do follow tags.) older refers to vgo, go1.11, go1.12 On Wednesday, April 1, 2020 at 2:07:19 PM UTC+2, Nitish Saboo wrote: > > Hi, > > I created go.mod file from two different go versions 1.12 and

Re: [go-nuts] Re: Pseudo version showing different in go1.12 and go1.13

2020-04-03 Thread Nitish Saboo
Hi, I have already gone through this doc. The thing is I am getting two different pseudo versions for two different go versions. Are you saying I should get pseudo version v0.0.0 for both the go versions? Thanks, Nitish On Fri, 3 Apr 2020, 21:16 Sean Liao, wrote: > https://golang.org/cmd/go/#h

Re: [go-nuts] Re: Pseudo version showing different in go1.12 and go1.13

2020-04-03 Thread Sean Liao
https://golang.org/cmd/go/#hdr-Pseudo_versions The note about v0.0.0 originally being the only form is relevant -- 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 g

Re: [go-nuts] Re: Pseudo version showing different in go1.12 and go1.13

2020-04-03 Thread Nitish Saboo
Hi, Can someone please guide me on this ? Thanks, Nitish On Thu, Apr 2, 2020 at 12:50 PM Nitish Saboo wrote: > Hi, > > Apologies forgot to mention, I am treying to migrate from go deps to go > modules. > Following is what is present in the Godeps for aws-sdk-go dependency > { > "ImportPath": "

[go-nuts] Re: Pseudo version showing different in go1.12 and go1.13

2020-04-02 Thread Nitish Saboo
Hi, Apologies forgot to mention, I am treying to migrate from go deps to go modules. Following is what is present in the Godeps for aws-sdk-go dependency { "ImportPath": "github.com/aws/aws-sdk-go", "Rev": "2150862edc16fe370b0ad7e34e30cb7b06f9b265" } Please let me know what am I missing here? T