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

Stage release 2.0.6 #291

Merged
merged 1 commit into from
Mar 7, 2023
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
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,13 @@ Change line format:

## Unreleased (master)

## 2.0.6

### Added

- Add support for go 1.19.6 and 1.20.1 (#288)
- Add support for 1.20 (#284)

## 2.0.5

### Added
Expand Down
2 changes: 1 addition & 1 deletion libexec/goenv---version
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@
set -e
[ -n "$GOENV_DEBUG" ] && set -x

version="2.0.5"
version="2.0.6"

echo "goenv ${version}"
2 changes: 1 addition & 1 deletion plugins/go-build/bin/go-build
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
# -g/--debug Build a debug version
#

GO_BUILD_VERSION="2.0.5"
GO_BUILD_VERSION="2.0.6"

OLDIFS="$IFS"

Expand Down
2 changes: 1 addition & 1 deletion plugins/go-build/test/goenv-install.bats
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ OUT

assert_success
assert_output <<-OUT
go-build 2.0.5
go-build 2.0.6
OUT
}

Expand Down
2 changes: 1 addition & 1 deletion test/goenv--version.bats
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

load test_helper

expected_version="goenv 2.0.5"
expected_version="goenv 2.0.6"

@test "default version is 'version' variable" {
assert [ ! -e "$GOENV_ROOT" ]
Expand Down