From 6756dce09b30916e19e2aae1f6831a0c8c6eb473 Mon Sep 17 00:00:00 2001 From: Piotr Bartosik Date: Thu, 29 Aug 2024 11:31:15 +0000 Subject: [PATCH] DXE-4154 Update the changelog and version number for the release --- CHANGELOG.md | 14 ++++++++------ pkg/version/version.go | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index da9d736..e6e3012 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,20 +1,22 @@ # RELEASE NOTES -## X.X.X (X X, X) +## 1.6.0 (September 5, 2024) ### Enhancements -* Support to show the `Installed Version` of commands during `search` -* Removed commands and packages versions from `package-list.json` + +* Added support to show the `Installed Version` of commands during `search` +* Updated the list of packages in `packages-list.json` ([GH#192](https://github.com/akamai/cli/issues/192)) +* Removed versions of the packages from `package-list.json` * Changed package installation order - * Cli will first check if new binaries are available, if the package has no binaries or no valid binaries can be found, it will build the package locally. + * Cli will first check if new binaries are available. If the package has no binaries or no valid + binaries can be found, it will build the package locally * --force flag has been deprecated for both install and update * Migrated to go 1.21 * Updated various dependencies -* Enabled uninstall command when binaries were not found ### Fixes -* Updated the versions, descriptions, requirements and packages of the dependencies in the `packages-list.json` ([GH#192](https://github.com/akamai/cli/issues/192)) +* Fixed uninstalling of a command when binaries are not found ## 1.5.6 (January 22, 2024) diff --git a/pkg/version/version.go b/pkg/version/version.go index 4d47580..b95e952 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -4,7 +4,7 @@ import "github.com/Masterminds/semver" const ( // Version Application Version - Version = "1.5.6" + Version = "1.6.0" // Equals p1==p2 in version.Compare(p1, p2) Equals = 0 // Error failure parsing one of the parameters in version.Compare(p1, p2)