Skip to content

Commit 69d7bc4

Browse files
author
Sam Giffney
authored
Add changelog. Setup for 2.3 release (#15)
* Add changelog and v2.3 notes * remove redundant add_prefix var
1 parent 3c82b66 commit 69d7bc4

File tree

3 files changed

+29
-5
lines changed

3 files changed

+29
-5
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Changelog
2+
All notable changes to this project will be documented in this file.
3+
4+
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
5+
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
6+
7+
## [2.3] - 2022-12-14
8+
### Added
9+
- Support for `--add-prefix` option on `format-coverage` command
10+
11+
## [2.2] - 2021-01-26
12+
### Added
13+
- Support for multiple test suites
14+
15+
## [2.1] - 2019-02-11
16+
### Added
17+
- Parallel file formatting
18+
19+
## [2.0] - 2018-05-07
20+
### Added
21+
- Support for multiple artifacts
22+
23+
## [1.0] - 2018-01-23
24+
### Added
25+
- Initial implementation

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This plugin will download build artifact(s) generated by a previous step, compil
2020
steps:
2121
- label: ":codeclimate: Report coverage"
2222
plugins:
23-
- jobready/codeclimate-test-reporter#v2.2:
23+
- jobready/codeclimate-test-reporter#v2.3:
2424
artifact: "coverage/.resultset.json"
2525
input_type: simplecov
2626
prefix: /app
@@ -66,7 +66,7 @@ This is best shown via an example;
6666
- label: ":codeclimate: Format Rails Coverage"
6767
key: "codeclimate-format-rails-report"
6868
plugins:
69-
- jobready/codeclimate-test-reporter#v2.2:
69+
- jobready/codeclimate-test-reporter#v2.3:
7070
artifact: "coverage/coverage.json"
7171
input_type: simplecov
7272
prefix: /app
@@ -94,7 +94,7 @@ This is best shown via an example;
9494
- label: ":codeclimate: Format React Coverage"
9595
key: "codeclimate-format-react-report"
9696
plugins:
97-
- jobready/codeclimate-test-reporter#v2.2:
97+
- jobready/codeclimate-test-reporter#v2.3:
9898
artifact: "coverage/lcov.info"
9999
input_type: lcov
100100
prefix: /app
@@ -108,7 +108,7 @@ This is best shown via an example;
108108
- label: ":codeclimate: Report coverage"
109109
key: "codeclimate-coverage-report"
110110
plugins:
111-
- jobready/codeclimate-test-reporter#v2.2:
111+
- jobready/codeclimate-test-reporter#v2.3:
112112
artifact: "coverage/codeclimate**"
113113
format: false
114114
env:

hooks/command

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ debug=""
7474
format=${BUILDKITE_PLUGIN_CODECLIMATE_TEST_REPORTER_FORMAT:-true}
7575
formatted_file_prefix=${BUILDKITE_PLUGIN_CODECLIMATE_TEST_REPORTER_FILE_PREFIX:-"codeclimate"}
7676
report=${BUILDKITE_PLUGIN_CODECLIMATE_TEST_REPORTER_REPORT:-true}
77-
add_prefix=${BUILDKITE_PLUGIN_CODECLIMATE_TEST_REPORTER_ADD_PREFIX:-""}
7877

7978
install_reporter
8079
download_artifacts

0 commit comments

Comments
 (0)