Skip to content

Commit

Permalink
Bump version to 0.10.1 (#88)
Browse files Browse the repository at this point in the history
The git tag for 0.10.0 is pointing at the wrong commit.
This is causing the hook to still point at the previous version.
We could fix the tag, but that doesn't necessarily propagate cleanly.
Instead, let's just use a new version number to fix this.
  • Loading branch information
TBoshoven authored Jun 28, 2022
1 parent 139b724 commit 3c081f6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

0.10.1 (TBoshoven)
------------------

1. Re-tag to properly pick the proper version when using the hook.

0.10.0 (boyntoni)
-----------------

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Example
steps:
- label: ":buildkite:"
plugins:
- jwplayer/buildpipe#v0.10.0:
- jwplayer/buildpipe#v0.10.1:
dynamic_pipeline: dynamic_pipeline.yml
```
Expand Down
2 changes: 1 addition & 1 deletion hooks/command
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
set -euo pipefail

buildpipe_version="${BUILDKITE_PLUGIN_BUILDPIPE_VERSION:-0.10.0}"
buildpipe_version="${BUILDKITE_PLUGIN_BUILDPIPE_VERSION:-0.10.1}"
is_test="${BUILDKITE_PLUGIN_BUILDPIPE_TEST_MODE:-false}"

if [[ "$is_test" == "false" ]]; then
Expand Down

0 comments on commit 3c081f6

Please sign in to comment.