File tree Expand file tree Collapse file tree 4 files changed +11
-6
lines changed
lib/test_summary_buildkite_plugin Expand file tree Collapse file tree 4 files changed +11
-6
lines changed Original file line number Diff line number Diff 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 )
Original file line number Diff line number Diff 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*
Original file line number Diff line number Diff line change 553 . Update [ CHANGELOG.md] ( ./CHANGELOG.md )
664 . Ensure screenshots are up to date
775 . 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 `
121310 . Copy changelog entry to github release notes
Original file line number Diff line number Diff line change 11# frozen_string_literal: true
22
33module TestSummaryBuildkitePlugin
4- VERSION = '1.5 .0'
4+ VERSION = '1.6 .0'
55end
You can’t perform that action at this time.
0 commit comments