diff --git a/CHANGELOG.md b/CHANGELOG.md index 3e58de4..f1570f7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,13 @@ # Change Log +## [v0.2.0](https://github.com/vultr/govultr/compare/v0.1.7..v0.2.0) (2020-02-06) +### Enhancement +* Added support for Object Storage [#39](https://github.com/vultr/govultr/pull/39) + ## [v0.1.7](https://github.com/vultr/govultr/compare/v0.1.6..v0.1.7) (2019-11-11) ### Enhancement * Version number was missing in v0.1.6 - Attempt was made to fix however it will not work. Cutting new release to remedy this. - ## [v0.1.6](https://github.com/vultr/govultr/compare/v0.1.5..v0.1.6) (2019-11-07) ### Enhancement * Retry rate-limited requests with exponential backoff[#28](https://github.com/vultr/govultr/pull/28) diff --git a/govultr.go b/govultr.go index de5f042..610e8e8 100644 --- a/govultr.go +++ b/govultr.go @@ -16,7 +16,7 @@ import ( ) const ( - version = "0.1.7" + version = "0.2.0" defaultBase = "https://api.vultr.com" userAgent = "govultr/" + version rateLimit = 600 * time.Millisecond