From 3d04fa285618e8812fde21529f53527132a239ac Mon Sep 17 00:00:00 2001 From: Max Schwenk Date: Thu, 21 Feb 2019 16:19:53 -0800 Subject: [PATCH] Bump version to 1.9.0 --- CHANGELOG.md | 6 ++++++ README.md | 2 +- lib/test_summary_buildkite_plugin/version.rb | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 74519a2..01888e3 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.9.0](https://github.com/bugcrowd/test-summary-buildkite-plugin/compare/v1.8.0...v1.9.0) - 2019-02-21 +- Fix bin/run-dev to work with the new array syntax [#45](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/45) (thanks @philwo) +- Update buildkite css files in test layout [#46](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/46) +- Update `MAX_MARKDOWN_SIZE` to 100kb [#47](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/47) (thanks @ticky) +- Move docker images to the bugcrowd organisation [#48](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/48) + ## [v1.8.0](https://github.com/bugcrowd/test-summary-buildkite-plugin/compare/v1.7.2...v1.8.0) - 2018-12-14 - Correctly link to jobs post buildkite update [#43](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/43) - JUnit: Allow disabling the message or details if they aren't relevant [#44](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/44) diff --git a/README.md b/README.md index 4701bc1..62b4963 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.8.0: + - bugcrowd/test-summary#v1.9.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 fa71104..e9e1eaf 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.8.0' + VERSION = '1.9.0' end