From f7fbf684d2559731311c0f264be4786df35cd3b7 Mon Sep 17 00:00:00 2001 From: David Dymko Date: Wed, 11 Mar 2020 15:07:54 -0400 Subject: [PATCH] release for v0.3.1 --- CHANGELOG.md | 9 +++++++++ govultr.go | 2 +- 2 files changed, 10 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b24e13a..9bd202f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## [v0.3.1](https://github.com/vultr/govultr/compare/v0.3.0..v0.3.1) (2020-03-11) +### Enhancement +* Added support for Load Balancers SSL Calls [#53](https://github.com/vultr/govultr/pull/53) +### Bug Fix +* Fixed InstanceList type from string to int [#50](https://github.com/vultr/govultr/pull/50) +* Fixed struct json marshalling issue [#48](https://github.com/vultr/govultr/pull/48) +### Dependencies +* go-retryablehttp 0.6.3 -> 0.6.4 [#51](https://github.com/vultr/govultr/pull/51) + ## [v0.3.0](https://github.com/vultr/govultr/compare/v0.2.0..v0.3.0) (2020-02-24) ### Enhancement * Added support for Load Balancers [#44](https://github.com/vultr/govultr/pull/44) diff --git a/govultr.go b/govultr.go index f4ceaa7..738c393 100644 --- a/govultr.go +++ b/govultr.go @@ -16,7 +16,7 @@ import ( ) const ( - version = "0.3.0" + version = "0.3.1" defaultBase = "https://api.vultr.com" userAgent = "govultr/" + version rateLimit = 600 * time.Millisecond