diff --git a/CHANGELOG.md b/CHANGELOG.md index 83c08e1..9dcafbf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,14 @@ # Change Log +## [3.8.0](https://github.com/vultr/govultr/compare/v3.7.0...v3.8.0) +### Enhancements +* Inference: add support for serverless inference endpoints [PR 315](https://github.com/vultr/govultr/pull/315) + +### Dependencies +* Bump github.com/hashicorp/go-retryablehttp from 0.7.6 to 0.7.7 [PR 312](https://github.com/vultr/govultr/pull/312) + +### Automation +* Update golangci-lint and enable most go-vet checks [PR 314](https://github.com/vultr/govultr/pull/314) + ## [3.7.0](https://github.com/vultr/govultr/compare/v3.6.4...v3.7.0) (2024-05-28) ### Enhancements * Bare Metal: Add MdiskMode to BareMetalCreate and BareMetalUpdate structs [PR 310](https://github.com/vultr/govultr/pull/310) diff --git a/govultr.go b/govultr.go index ffd8bd8..e0b9875 100644 --- a/govultr.go +++ b/govultr.go @@ -19,7 +19,7 @@ import ( ) const ( - version = "3.7.0" + version = "3.8.0" defaultBase = "https://api.vultr.com" userAgent = "govultr/" + version rateLimit = 500 * time.Millisecond