backport 0.12.1 release (#3079)

* chore: update version

* fix(tests): break out of infinite loop for bats tests

* chore: update changelog

* fix: make-gen-delta check
pull/3086/head
Damian Debkowski 3 years ago committed by GitHub
parent b6d58d0c42
commit bbbd6b1e51
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,9 +1,10 @@
# Boundary CHANGELOG
Canonical reference for changes, improvements, and bugfixes for Boundary.
## Next
## 0.12.1 (2023/03/13)
### Bug Fixes
* cli: Fix fallback parsing of un-typed credentials for `boundary connect`.

@ -32,8 +32,14 @@ function cleanup {
trap cleanup EXIT
max=120
c=0
until boundary scopes list; do
echo 'waiting for boundary to be up'
((c+=1))
if [[ $c -ge $max ]]; then
die "timeout waiting for boundary controller to get healthy"
fi
sleep 1
done

@ -1 +1 @@
0.12.0
0.12.1

@ -13,7 +13,7 @@ var (
// Version is the base version
// Default values - set when building locally (at build time)
Version = "0.12.0"
Version = "0.12.1"
// VersionPrerelease is also set at compile time, similarly to Version.
VersionPrerelease string

Loading…
Cancel
Save