Skip to content

Commit

Permalink
missing version
Browse files Browse the repository at this point in the history
  • Loading branch information
ddymko authored Nov 11, 2019
1 parent b437b59 commit 4bd63e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion govultr.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import (
)

const (
version = "0.1.5"
version = "0.1.6"
defaultBase = "https://api.vultr.com"
userAgent = "govultr/" + version
rateLimit = 600 * time.Millisecond
Expand Down

4 comments on commit 4bd63e7

@pgaskin
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note that this won't really apply for anyone, as Go 1.13+ uses the Go module proxy by default, which is a read-only cache of all published versions, thus retagging has no effect. The only option to update this for everyone is to publish a new version with a higher version number (i.e. 0.1.7).

@ddymko
Copy link
Contributor Author

@ddymko ddymko commented on 4bd63e7 Nov 11, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yup, realized it the minute I did it. Really long monday for me XD

@pgaskin
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep. At least you didn't accidentally push a major version, as that would really be a mess! πŸ˜ƒ

@ddymko
Copy link
Contributor Author

@ddymko ddymko commented on 4bd63e7 Nov 11, 2019

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Wouldn't have been surprised if I did with the day I've been having 😩! I am going update the Changelog and cut a new release

Please sign in to comment.