From 26489729041a1f5b79548988e6a608d80c64682e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Oliv=C3=A9r=20Falvai?= Date: Thu, 30 Jun 2022 12:32:04 +0200 Subject: [PATCH] Bump version to 0.13.2 (#305) * Remove Xcode dependency check * Fix incorrect vendor folder * Revert "Fix incorrect vendor folder" This reverts commit ef2330e347e62923907f9888ba24bd8c4f97f32e. * Bump version number * Update version test --- _tests/integration/version_test.go | 4 ++-- version/version.go | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/_tests/integration/version_test.go b/_tests/integration/version_test.go index f3f7bc0d..3aca1ab2 100644 --- a/_tests/integration/version_test.go +++ b/_tests/integration/version_test.go @@ -14,7 +14,7 @@ func Test_VersionOutput(t *testing.T) { { out, err := command.RunCommandAndReturnCombinedStdoutAndStderr(binPath(), "version") require.NoError(t, err, out) - require.Equal(t, "0.13.1", out) + require.Equal(t, "0.13.2", out) } t.Log("Version --full") @@ -23,7 +23,7 @@ func Test_VersionOutput(t *testing.T) { require.NoError(t, err, out) expectedOSVersion := fmt.Sprintf("%s (%s)", runtime.GOOS, runtime.GOARCH) - expectedVersionOut := fmt.Sprintf(`version: 0.13.1 + expectedVersionOut := fmt.Sprintf(`version: 0.13.2 os: %s go: %s build_number: diff --git a/version/version.go b/version/version.go index 3b64b0a0..3aa8352c 100644 --- a/version/version.go +++ b/version/version.go @@ -1,4 +1,4 @@ package version // VERSION ... -const VERSION = "0.13.1" +const VERSION = "0.13.2"