Skip to content

Commit

Permalink
update for release (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
pjaudiomv authored Oct 21, 2023
1 parent 55105d5 commit 7068657
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## v0.0.7 (October 20, 2023)
* Update for new organization.

## v0.0.6 (October 6, 2023)
* Refactored codebase.

Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ help: ## Show this help
@fgrep -h "##" $(MAKEFILE_LIST) | fgrep -v fgrep | sed -e 's/\\$$//' | sed -e 's/##//'

install: ## Install Target
GOOS= GOARCH= GOARM= GOFLAGS= go build -o _awsd_prompt
GOOS= GOARCH= GOARM= GOFLAGS= go build -o ${BINDIR}/_awsd_prompt
cp scripts/_awsd ${BINDIR}/_awsd
@echo " -=-=--=-=-=-=-=-=-=-=-=-=-=-=- "
@echo " "
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ func shouldRunDirectProfileSwitch() bool {
func directProfileSwitch(desiredProfile string) error {
profiles := utils.GetProfiles()
if utils.Contains(profiles, desiredProfile) {
printColoredMessage("Profile", utils.PromptColor)
printColoredMessage("Profile ", utils.PromptColor)
printColoredMessage(desiredProfile, utils.CyanColor)
printColoredMessage(" set.\n", utils.PromptColor)
return utils.WriteFile(desiredProfile, utils.GetHomeDir())
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"github.com/spf13/cobra"
)

var version string = "v0.0.6"
var version string = "v0.0.7"

var versionCmd = &cobra.Command{
Use: "version",
Expand Down

0 comments on commit 7068657

Please sign in to comment.