From 51f62772c15d1e93ebab7a014ffcc8acf4056cfa Mon Sep 17 00:00:00 2001 From: David Dymko Date: Wed, 5 Jan 2022 09:16:55 -0500 Subject: [PATCH] Release v2.13.0 #minor * Release v2.13.0 #minor * Release v2.13.0 #minor --- CHANGELOG.md | 4 ++++ govultr.go | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0843527..e3a50ab 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.13.0](https://github.com/vultr/govultr/compare/v2.12.0..v2.13.0) (2022-01-05) +### Enhancement +* ListOptions : [Added query params](https://www.vultr.com/api/#operation/list-instances) that can be used with `Instance.List` [197](https://github.com/vultr/govultr/pull/197) + ## [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) diff --git a/govultr.go b/govultr.go index 21b043f..d31b819 100644 --- a/govultr.go +++ b/govultr.go @@ -16,7 +16,7 @@ import ( ) const ( - version = "2.12.0" + version = "2.13.0" defaultBase = "https://api.vultr.com" userAgent = "govultr/" + version rateLimit = 500 * time.Millisecond