From 31cfd8d792bd6faa84b1a1f2206aee7b49781681 Mon Sep 17 00:00:00 2001 From: Max Schwenk Date: Sat, 12 Oct 2019 15:19:14 -0700 Subject: [PATCH] Bump version to 1.10.0 --- CHANGELOG.md | 3 +++ README.md | 2 +- lib/test_summary_buildkite_plugin/version.rb | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1291d1e..7ee540f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +## [v1.10.0](https://github.com/bugcrowd/test-summary-buildkite-plugin/compare/v1.9.1...v1.10.0) - 2019-10-12 +- Support TAP version 12 plus skipped and TODO tests [#54](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/54) + ## [v1.9.1](https://github.com/bugcrowd/test-summary-buildkite-plugin/compare/v1.9.0...v1.9.1) - 2019-05-30 - Fix Checkstyle formatter to be more tolerant of optional attributes [#52](https://github.com/bugcrowd/test-summary-buildkite-plugin/pull/52) diff --git a/README.md b/README.md index 12a7498..ea74e9c 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.9.1: + - bugcrowd/test-summary#v1.10.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 eed7ba4..2aae255 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.9.1' + VERSION = '1.10.0' end