Skip to content

Commit 74831d6

Browse files
author
tessereth
committed
Bump version to 1.6.0
1 parent ed11796 commit 74831d6

File tree

4 files changed

+11
-6
lines changed

4 files changed

+11
-6
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
66

77
## [Unreleased]
88

9+
## [v1.6.0](https://github.com/bugcrowd/test-summary-buildkite-plugin/compare/v1.5.0...v1.6.0) - 2018-08-06
10+
- Remove undocumented count-only formatter [#28](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/28)
11+
- JUnit: support custom summary formats [#29](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/29)
12+
913
## [v1.5.0](https://github.com/bugcrowd/test-summary-buildkite-plugin/compare/v1.4.0...v1.5.0) - 2018-07-25
1014
- JUnit: Don't show an empty message when it's not provided [#21](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/21)
1115
- Remove redcarpet workarounds [#22](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/22)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ Add a build step using the test-summary plugin:
5252
```yaml
5353
- label: annotate
5454
plugins:
55-
bugcrowd/test-summary#v1.5.0:
55+
bugcrowd/test-summary#v1.6.0:
5656
inputs:
5757
- label: rspec
5858
artifact_path: artifacts/rspec*

RELEASE.md

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,9 @@
55
3. Update [CHANGELOG.md](./CHANGELOG.md)
66
4. Ensure screenshots are up to date
77
5. Push to github and ensure tests pass
8-
6. `docker build -t tessereth/test-summary-buildkite-plugin:vx.x.x .`
9-
7. `git tag --sign vx.x.x -m "Release vx.x.x"`
10-
8. `docker push tessereth/test-summary-buildkite-plugin:vx.x.x`
11-
9. `git push origin vx.x.x`
8+
7. `export NEXT_VERSION=vx.x.x`
9+
6. `docker build -t tessereth/test-summary-buildkite-plugin:$NEXT_VERSION .`
10+
7. `git tag --sign $NEXT_VERSION -m "Release $NEXT_VERSION"`
11+
8. `docker push tessereth/test-summary-buildkite-plugin:$NEXT_VERSION`
12+
9. `git push origin $NEXT_VERSION`
1213
10. Copy changelog entry to github release notes
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# frozen_string_literal: true
22

33
module TestSummaryBuildkitePlugin
4-
VERSION = '1.5.0'
4+
VERSION = '1.6.0'
55
end

0 commit comments

Comments
 (0)