From 09629f334dcede357a624b8159c63b0d95776e92 Mon Sep 17 00:00:00 2001 From: David Dymko Date: Fri, 15 Apr 2022 09:15:08 -0400 Subject: [PATCH] Release v2.13.0 #minor --- CHANGELOG.md | 18 ++++++++++++++++++ cmd/version.go | 2 +- 2 files changed, 19 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e18289cb..358c0f10 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # Change Log +## [v2.13.0](https://github.com/vultr/vultr-cli/compare/v2.12.2..v2.13.0) (2022-04-15) +### Enhancements +* VPC : new commands which will be replacing `network` (private networks) [PR 251](https://github.com/vultr/vultr-cli/pull/251) +* BlockStorage : adding support for new `block_type` field [PR 249](https://github.com/vultr/vultr-cli/pull/249/) +* LoadBalancer : Updating `vpc` functionality added [PR 251](https://github.com/vultr/vultr-cli/pull/251) + +### Deprecations +* Network : These commands have been replaced by `vpc` [PR 251](https://github.com/vultr/vultr-cli/pull/251) +* Instance : The following fields have been deprecated on the `create` command `private-network` and `network`. Please use `vpc-enable` or `vpc-ids` [PR 251](https://github.com/vultr/vultr-cli/pull/251) +* LoadBalancer : The following fields have been deprecated on the `create` command `private-network`. Please use `vpc` instead [PR 251](https://github.com/vultr/vultr-cli/pull/251) + +### Dependencies +* Bump github.com/vultr/govultr/v2 from 2.14.1 to 2.15.1 [PR 249](https://github.com/vultr/vultr-cli/pull/249) +* Bump github.com/spf13/viper from 1.10.1 to 1.11.0 [PR 252](https://github.com/vultr/vultr-cli/pull/252) + +### Documentation +* Add Fedora installation instructions [PR 246](https://github.com/vultr/vultr-cli/pull/246) + ## [v2.12.2](https://github.com/vultr/vultr-cli/compare/v2.12.1..v2.12.2) (2022-04-01) ### Enhancements * Instances : fix csv flags `ssh-keys` and `network` [PR 244](https://github.com/vultr/vultr-cli/pull/244) @optik-aper diff --git a/cmd/version.go b/cmd/version.go index 09f13d35..e8a46394 100644 --- a/cmd/version.go +++ b/cmd/version.go @@ -21,7 +21,7 @@ import ( ) const ( - version = "v2.12.2" + version = "v2.13.0" ) // versionCmd represents the version command