diff --git a/CHANGELOG.md b/CHANGELOG.md index d1f3a93..d56ae6d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,49 +1,23 @@ # RELEASE NOTES -## X.X.X (X X, X) +## 2.0.0 (Feb 3, 2025) ### Breaking changes -* Removed the deprecated `force` flag for the `install` and `update` commands. - -* Removed the support for `glide` package manager. - - - - - - +* Removed the deprecated `force` flag from the `install` and `update` commands. +* Removed support for the `glide` package manager. ### Enhancements * Migrated to Go `1.22`. -* Changed logger from `apex` to `slog` - * Log output has not been changed - - - - - - - - - - - - - - +* Changed the logger from `apex` to `slog`. The log output has not been changed. * Updated vulnerable dependencies. ### Fixes -* Fixed a problem with invisible output in the light background by converting all colors to a monochromatic representation ([GH#196](https://github.com/akamai/cli/issues/196)). - +* Fixed a problem with invisible output in the light background by converting all colors to a monochromatic representation ([GH#196](https://github.com/akamai/cli/issues/196)). * Improved code by resolving issues reported by linter. - - - ## 1.6.1 (Jan 2, 2025) * Fixed security vulnerability ([GH#198](https://github.com/akamai/cli/pull/198)). @@ -58,7 +32,7 @@ * 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. - * The `--force` flag has been deprecated for both install and update. + * The `--force` flag has been deprecated for both the `install` and `update` commands. * Migrated to Go `1.21`. * Updated various dependencies. @@ -172,7 +146,7 @@ ### Fixes * Fixed the `PROXY` flag not working correctly in Go `1.16`. -* Fixed an old executable not being removed after upgrading on windows. +* Fixed an old executable not being removed after upgrading on Windows. ### Enhancements * The `upgrade` command can now be executed with the auto-upgrades disabled. @@ -190,5 +164,5 @@ * Added code improvements: unit test coverage improvement and project structure refactoring. * Removed the Glide build tool in favor of the Go modules. * Moved Dockerfile to the [akamai-docker](https://github.com/akamai/akamai-docker/) repository. -* Logging: all `TRACE` log messages are now written in `DEBUG` level. Besides, all commands are traced in logs with `START`, `FINISH` or eventually `ERROR`. +* Logging: all `TRACE` log messages are now written in the `DEBUG` level. Besides, all commands are traced in logs with `START`, `FINISH`, or `ERROR`. * Logging: added a new `AKAMAI_CLI_LOG_PATH` environment variable to redirect logs to a file. diff --git a/pkg/version/version.go b/pkg/version/version.go index 33c5659..69f0e2d 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.6.1" + Version = "2.0.0" // Equals p1==p2 in version.Compare(p1, p2) Equals = 0 // Error failure parsing one of the parameters in version.Compare(p1, p2)