diff --git a/CHANGELOG.md b/CHANGELOG.md index 5844609..0843527 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ ## GoVultr v1 changelog is located [here](https://github.com/vultr/govultr/blob/v1/CHANGELOG.md) +## [v2.12.0](https://github.com/vultr/govultr/compare/v2.11.1..v2.12.0) (2021-12-01) +### Breaking Changes +* Plans : Changed `MonthlyCost` from `int` to `float32` [192](https://github.com/vultr/govultr/pull/192) + ## [v2.11.1](https://github.com/vultr/govultr/compare/v2.11.0..v2.11.1) (2021-11-26) ### Bug fixes * LoadBalancers : Fixed SSL struct json params to the proper API fields [189](https://github.com/vultr/govultr/pull/189) diff --git a/govultr.go b/govultr.go index f212b3f..21b043f 100644 --- a/govultr.go +++ b/govultr.go @@ -16,7 +16,7 @@ import ( ) const ( - version = "2.11.1" + version = "2.12.0" defaultBase = "https://api.vultr.com" userAgent = "govultr/" + version rateLimit = 500 * time.Millisecond