Skip to content

Commit

Permalink
Bump patch version (#65)
Browse files Browse the repository at this point in the history
* Fix missing import

* Bump version to v0.9.1
  • Loading branch information
ksindi authored Aug 28, 2020
1 parent b9b53dd commit 558ffda
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 7 deletions.
13 changes: 9 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,16 +1,21 @@
# Changelog

0.9.1 (ksindi)
--------------

1. Capture and log stderr on Buildkite pipeline upload failure.

0.9.0 (ksindi)
--------------

* Rewrite plugin in Go
* Change license to Apache 2
1. Rewrite plugin in Go
2. Change license to Apache 2

0.8.0 (ksindi)
--------------

* Projects are now defined in the dynamic_pipeline.yml file and not the initial pipeline. This allow define most configuration changes in one file.
* The diff command has been split into two commands to give more flexibility on whether you are specifying the default branch or a non-default branch.
1. Projects are now defined in the dynamic_pipeline.yml file and not the initial pipeline. This allow define most configuration changes in one file.
2. The diff command has been split into two commands to give more flexibility on whether you are specifying the default branch or a non-default branch.

0.7.0 (ksindi)
--------------
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.9.0:
- jwplayer/buildpipe#v0.9.1:
dynamic_pipeline: dynamic_pipeline.yml
```
Expand Down
4 changes: 3 additions & 1 deletion git.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,12 @@ package main

import (
"bytes"
log "github.com/sirupsen/logrus"
"fmt"
"os"
"os/exec"
"strings"

log "github.com/sirupsen/logrus"
)

func getEnv(key, fallback string) string {
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.9.0}"
buildpipe_version="${BUILDKITE_PLUGIN_BUILDPIPE_VERSION:-0.9.1}"
is_test="${BUILDKITE_PLUGIN_BUILDPIPE_TEST_MODE:-false}"

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

0 comments on commit 558ffda

Please sign in to comment.