Skip to content

Commit

Permalink
release v1.14.3
Browse files Browse the repository at this point in the history
  • Loading branch information
synfinatic committed Jan 15, 2024
1 parent 54ee42a commit 34131ed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

## [Unreleased]

## [v1.14.3] - 2024-01-15

### Bugs

* Fix crash when user has 0 AWS accounts #750
Expand Down Expand Up @@ -640,7 +642,8 @@

Initial release

[Unreleased]: https://github.com/synfinatic/aws-sso-cli/compare/v1.14.2...main
[Unreleased]: https://github.com/synfinatic/aws-sso-cli/compare/v1.14.3...main
[v1.14.3]: https://github.com/synfinatic/aws-sso-cli/releases/tag/v1.14.3
[v1.14.2]: https://github.com/synfinatic/aws-sso-cli/releases/tag/v1.14.2
[v1.14.1]: https://github.com/synfinatic/aws-sso-cli/releases/tag/v1.14.1
[v1.14.0]: https://github.com/synfinatic/aws-sso-cli/releases/tag/v1.14.0
Expand Down
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PROJECT_VERSION := 1.14.2
PROJECT_VERSION := 1.14.3
DOCKER_REPO := synfinatic
PROJECT_NAME := aws-sso

Expand Down Expand Up @@ -64,12 +64,12 @@ uninstall: ## Uninstall binary from $INSTALL_PREFIX
rm $(INSTALL_PREFIX)/bin/$(PROJECT_NAME)

release-brew: ## Create a PR against homebrew to bump the version
VERSION=v$(PROJECT_VERSION) ./scripts/release-check.sh
VERSION=$(PROJECT_VERSION) ./scripts/release-check.sh
brew update && brew bump-formula-pr --version $(PROJECT_VERSION) aws-sso-cli

release-tag: ## Tag our current HEAD as v$(PROJECT_VERSION)
git tag -sa v$(PROJECT_VERSION) -m 'release $(PROJECT_VERSION)'
VERSION=v$(PROJECT_VERSION) ./scripts/release-check.sh
VERSION=$(PROJECT_VERSION) ./scripts/release-check.sh
git push --tags

#DOWNLOAD_URL := https://synfin.net/misc/aws-sso-cli.$(PROJECT_VERSION).tar.gz
Expand Down

0 comments on commit 34131ed

Please sign in to comment.