diff --git a/.buildkite/Dockerfile-release b/.buildkite/Dockerfile-release index 721fefc4..750aab73 100644 --- a/.buildkite/Dockerfile-release +++ b/.buildkite/Dockerfile-release @@ -1,3 +1,3 @@ -FROM public.ecr.aws/docker/library/alpine:3.19.1@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b +FROM public.ecr.aws/docker/library/alpine:3.20.0@sha256:77726ef6b57ddf65bb551896826ec38bc3e53f75cdde31354fbffb4f25238ebd RUN apk add --no-cache openssh-client github-cli diff --git a/CHANGELOG.md b/CHANGELOG.md index 080695ef..60913f08 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changelog +## 0.5.1 +- Add a new line to each error log. + ## 0.5.0 - ⚠️ **BREAKING** Rename `BUILDKITE_TEST_SPLITTER_CMD` to `BUILDKITE_SPLITTER_TEST_CMD`. - ⚠️ **BREAKING** Change the authentication mechanism to use Buildkite API access token. See [Migrating to 0.5.0](https://github.com/buildkite/test-splitter/tree/main?tab=readme-ov-file#migrating-to-050). diff --git a/main.go b/main.go index 558e8456..bc0c0185 100644 --- a/main.go +++ b/main.go @@ -169,7 +169,7 @@ func retryFailedTests(testRunner runner.Rspec, maxRetries int) int { // logErrorAndExit logs an error message and exits with the given exit code. func logErrorAndExit(exitCode int, format string, v ...any) { - fmt.Printf(format, v...) + fmt.Printf(format+"\n", v...) os.Exit(exitCode) } diff --git a/version/VERSION b/version/VERSION index 8f0916f7..4b9fcbec 100644 --- a/version/VERSION +++ b/version/VERSION @@ -1 +1 @@ -0.5.0 +0.5.1