From 7410e277450555d3f2a2f4fac5f24d6c5c4375a2 Mon Sep 17 00:00:00 2001 From: Mike Mondragon Date: Tue, 30 Jan 2024 16:32:50 -0800 Subject: [PATCH 1/3] Correct version value. Closes #164 --- internal/config/config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/config.go b/internal/config/config.go index 65da9fe..ebcf836 100644 --- a/internal/config/config.go +++ b/internal/config/config.go @@ -39,7 +39,7 @@ func init() { const ( // Version app version - Version = "2.0.0-beta.6" + Version = "2.0.1" // AWSCredentialsFormat format const AWSCredentialsFormat = "aws-credentials" From 00536d9e35fa6fef84fc8a1984918ed7291204d0 Mon Sep 17 00:00:00 2001 From: Mike Mondragon Date: Tue, 30 Jan 2024 16:46:26 -0800 Subject: [PATCH 2/3] Archived binary is just `okta-aws-cli`. We aren't publishing okta-aws-cli for Windows amd64, go binaries trigger AVs. Closes #154 Closes #166 --- .goreleaser.yaml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 786cb03..8a95c10 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -15,7 +15,10 @@ builds: - darwin - freebsd main: ./cmd/okta-aws-cli/ - binary: '{{ .ProjectName }}_v{{ .Version }}' + binary: '{{ .ProjectName }}' + ignore: + - goos: windows + goarch: amd64 archives: - id: zip format: zip From 407d421acd579ebb1ef06b297ddbd1e853c93439 Mon Sep 17 00:00:00 2001 From: Mike Mondragon Date: Tue, 30 Jan 2024 16:53:33 -0800 Subject: [PATCH 3/3] prep v2.0.1 release --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 10007f9..823563d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 2.0.1 (January 31, 2024) + +### ENHANCEMENTS + + * Packaged binary's don't have postfix version value on file name [#154](https://github.com/okta/okta-aws-cli/pull/154) + +### BUG FIXES + + * Binaries produced by golang for Windows amd64 runtimes are triggering AVs so we will not publish this for the OS/Arch [#166](https://github.com/okta/okta-aws-cli/pull/166) + * CLI version incorrectly rev'd on previous release [#164](https://github.com/okta/okta-aws-cli/pull/164) + ## 2.0.0 (January 25, 2024) V2 GA Release 🎉🎉