diff --git a/CHANGELOG.md b/CHANGELOG.md index 7d4b9fa..fb8ba78 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [v1.7.0](https://github.com/bugcrowd/test-summary-buildkite-plugin/compare/v1.6.0...v1.7.0) - 2018-09-26 +- JUnit: Expose classname if file attribute does not exist + [#33](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/33)/[#35](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/35) (thanks @timnew) +- Add support for checkstyle + [#34](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/34)/[#36](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/36) (thanks @timnew) + ## [v1.6.0](https://github.com/bugcrowd/test-summary-buildkite-plugin/compare/v1.5.0...v1.6.0) - 2018-08-06 - Remove undocumented count-only formatter [#28](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/28) - JUnit: support custom summary formats [#29](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/29) diff --git a/README.md b/README.md index f088cf4..636f1fd 100644 --- a/README.md +++ b/README.md @@ -57,7 +57,7 @@ Add a build step using the test-summary plugin: ```yaml - label: annotate plugins: - bugcrowd/test-summary#v1.6.0: + bugcrowd/test-summary#v1.7.0: inputs: - label: rspec artifact_path: artifacts/rspec* diff --git a/lib/test_summary_buildkite_plugin/version.rb b/lib/test_summary_buildkite_plugin/version.rb index 0f29b11..c32a170 100644 --- a/lib/test_summary_buildkite_plugin/version.rb +++ b/lib/test_summary_buildkite_plugin/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module TestSummaryBuildkitePlugin - VERSION = '1.6.0' + VERSION = '1.7.0' end