diff --git a/CHANGELOG.md b/CHANGELOG.md index 1ba99f6..3518969 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,10 +1,23 @@ # Change Log +## [v3.4.0](https://github.com/vultr/govultr/compare/v3.3.4...v3.4.0) (2023-11-10) +### Enhancements +* database: Support read replica promotion [PR 276](https://github.com/vultr/govultr/pull/276) +* kubernetes: Add managed firewall support [PR 277](https://github.com/vultr/govultr/pull/277) +* container-registry: Add support for container registry operations [PR 278](https://github.com/vultr/govultr/pull/278) + +### Dependencies +* Bump github.com/hashicorp/go-retryablehttp from 0.7.4 to 0.7.5 [PR 280](https://github.com/vultr/govultr/pull/280) + +### New Contributors +* @Byteflux made their first contribution in [PR 277](https://github.com/vultr/govultr/pull/277) + ## [v3.3.4](https://github.com/vultr/govultr/compare/v3.3.3...v3.3.4) (2023-10-30) ### Enhancements * Database: Add support for FerretDB [PR 272](https://github.com/vultr/govultr/pull/272) * Kubernetes: Add HA control planes support [PR 273](https://github.com/vultr/govultr/pull/273) ## [v3.3.3](https://github.com/vultr/govultr/compare/v3.3.2...v3.3.3) (2023-10-24) +### Bug Fixes * Database: Change VPCID to pointer for empty & nil values in updates [PR 270](https://github.com/vultr/govultr/pull/270) ## [v3.3.2](https://github.com/vultr/govultr/compare/v3.3.1...v3.3.2) (2023-10-23) diff --git a/govultr.go b/govultr.go index 97d4e0b..062c330 100644 --- a/govultr.go +++ b/govultr.go @@ -19,7 +19,7 @@ import ( ) const ( - version = "3.3.4" + version = "3.4.0" defaultBase = "https://api.vultr.com" userAgent = "govultr/" + version rateLimit = 500 * time.Millisecond