From 949081fad292f04aee6049008845eb78af4da7d3 Mon Sep 17 00:00:00 2001 From: David Dymko Date: Thu, 18 Nov 2021 10:10:11 -0500 Subject: [PATCH 1/2] release for v2.11.0 --- CHANGELOG.md | 9 +++++++++ govultr.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 69f8e86..5333824 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,15 @@ ## GoVultr v1 changelog is located [here](https://github.com/vultr/govultr/blob/v1/CHANGELOG.md) +## [v2.11.0](https://github.com/vultr/govultr/compare/v2.10.0..v2.11.0) (2021-11-18) +### Breaking Changes +* Instances : Update call will not return `*Instance` in addition to `error` [185](https://github.com/vultr/govultr/pull/185) +* Instances : Reinstall call now allows changing of hostname and also returns `*Instance` in addition to `error` [181](https://github.com/vultr/govultr/pull/181) + +### Enhancement +* Instances : The hostname of the instance is now returned in any call that returns Instance data [187](https://github.com/vultr/govultr/pull/187) +* Domains : There is a new field called `dns_sec` which will return `enabled` or `disabled` depending on how your domain is configured [184](https://github.com/vultr/govultr/pull/184) + ## [v2.10.0](https://github.com/vultr/govultr/compare/v2.9.2..v2.10.0) (2021-11-03) ### Enhancement * Billing : Added support for billing [178](https://github.com/vultr/govultr/pull/178) diff --git a/govultr.go b/govultr.go index e3cda9e..d10956b 100644 --- a/govultr.go +++ b/govultr.go @@ -16,7 +16,7 @@ import ( ) const ( - version = "2.10.0" + version = "2.11.0" defaultBase = "https://api.vultr.com" userAgent = "govultr/" + version rateLimit = 500 * time.Millisecond From aa8bd902570be2830bf694ad7034463999d0a15a Mon Sep 17 00:00:00 2001 From: David Dymko Date: Thu, 18 Nov 2021 10:14:51 -0500 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5333824..ae304a5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,7 @@ ## [v2.11.0](https://github.com/vultr/govultr/compare/v2.10.0..v2.11.0) (2021-11-18) ### Breaking Changes -* Instances : Update call will not return `*Instance` in addition to `error` [185](https://github.com/vultr/govultr/pull/185) +* Instances : Update call will now return `*Instance` in addition to `error` [185](https://github.com/vultr/govultr/pull/185) * Instances : Reinstall call now allows changing of hostname and also returns `*Instance` in addition to `error` [181](https://github.com/vultr/govultr/pull/181) ### Enhancement @@ -110,4 +110,4 @@ ## v2.0.0 (2020-11-20) ### Initial Release * GoVultr v2.0.0 Release - Uses Vultr API v2. -* GoVultr v1.0.0 is now on [branch v1](https://github.com/vultr/govultr/tree/v1) \ No newline at end of file +* GoVultr v1.0.0 is now on [branch v1](https://github.com/vultr/govultr/tree/v1)