Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep v2.0.1 Release #167

Merged
merged 3 commits into from
Jan 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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 🎉🎉
Expand Down
2 changes: 1 addition & 1 deletion internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
Loading