Skip to content

Commit

Permalink
Merge pull request #102 from ddymko/release-v1.1.1
Browse files Browse the repository at this point in the history
release v1.1.1
  • Loading branch information
ddymko authored Nov 4, 2020
2 parents fe7cea6 + eab420e commit bcb3aa4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 9 deletions.
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
# Change Log

## [v1.1.0](https://github.com/vultr/govultr/compare/v1.0.0..v1.1.0) (2020-10-03)
## [v1.1.1](https://github.com/vultr/govultr/compare/v1.1.0..v1.1.1) (2020-11-04)
### Fix
* v1.1.0 release was tagged on the wrong branch. This patch release resolves the broken v1.1.0 release.

## [v1.1.0](https://github.com/vultr/govultr/compare/v1.0.0..v1.1.0) (2020-11-03)
### Breaking Changes
* Servers: Create userData param should already be base64 encoded. This call will no longer encode supplied string. [#100](https://github.com/vultr/govultr/pull/100)
* BareMetalServer: Create userData param should already be base64 encoded. This call will no longer encode supplied string. [#100](https://github.com/vultr/govultr/pull/100)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module github.com/vultr/govultr

go 1.12
go 1.14

require github.com/hashicorp/go-retryablehttp v0.6.7
6 changes: 0 additions & 6 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,6 @@ github.com/hashicorp/go-cleanhttp v0.5.1 h1:dH3aiDG9Jvb5r5+bYHsikaOUIpcM0xvgMXVo
github.com/hashicorp/go-cleanhttp v0.5.1/go.mod h1:JpRdi6/HCYpAwUzNwuwqhbovhLtngrth3wmdIIUrZ80=
github.com/hashicorp/go-hclog v0.9.2 h1:CG6TE5H9/JXsFWJCfoIVpKFIkFe6ysEuHirp4DxCsHI=
github.com/hashicorp/go-hclog v0.9.2/go.mod h1:5CU+agLiy3J7N7QjHK5d05KxGsuXiQLrjA0H7acj2lQ=
github.com/hashicorp/go-retryablehttp v0.6.3 h1:tuulM+WnToeqa05z83YLmKabZxrySOmJAd4mJ+s2Nfg=
github.com/hashicorp/go-retryablehttp v0.6.3/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY=
github.com/hashicorp/go-retryablehttp v0.6.4 h1:BbgctKO892xEyOXnGiaAwIoSq1QZ/SS4AhjoAh9DnfY=
github.com/hashicorp/go-retryablehttp v0.6.4/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY=
github.com/hashicorp/go-retryablehttp v0.6.6 h1:HJunrbHTDDbBb/ay4kxa1n+dLmttUlnP3V9oNE4hmsM=
github.com/hashicorp/go-retryablehttp v0.6.6/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY=
github.com/hashicorp/go-retryablehttp v0.6.7 h1:8/CAEZt/+F7kR7GevNHulKkUjLht3CPmn7egmhieNKo=
github.com/hashicorp/go-retryablehttp v0.6.7/go.mod h1:vAew36LZh98gCBJNLH42IQ1ER/9wtLZZ8meHqQvEYWY=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
Expand Down
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 = "1.1.0"
version = "1.1.1"
defaultBase = "https://api.vultr.com"
userAgent = "govultr/" + version
rateLimit = 600 * time.Millisecond
Expand Down

0 comments on commit bcb3aa4

Please sign in to comment.