Skip to content

Commit 0f2af7c

Browse files
authored
Merge pull request #128 from cicirello/prep-release
Prepare release 2.10.0
2 parents f0dd6f6 + 09d54d2 commit 0f2af7c

File tree

4 files changed

+21
-6
lines changed

4 files changed

+21
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased] - 2023-09-03
7+
## [Unreleased] - 2023-09-04
88

99
### Added
10-
* Option to suppress workflow job summary in GitHub Actions Mode.
1110

1211
### Changed
1312

@@ -18,11 +17,19 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1817
### Fixed
1918

2019
### Dependencies
21-
* Bump cicirello/pyaction from 4.19.0 to 4.22.0
2220

2321
### CI/CD
2422

2523

24+
## [2.10.0] - 2023-09-04
25+
26+
### Added
27+
* Option to suppress workflow job summary in GitHub Actions Mode (#126).
28+
29+
### Dependencies
30+
* Bump cicirello/pyaction from 4.19.0 to 4.22.0
31+
32+
2633
## [2.9.0] - 2023-05-24
2734

2835
### Added

README.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -530,6 +530,12 @@ decreased since it is more precise than the truncated coverage percentage stored
530530
the badge or Shields endpoint. __Therefore, when using this feature, it is recommended that
531531
you also set `generate-summary: true` and commit the summary report JSON file to the repository.__
532532

533+
#### `generate-workflow-summary`
534+
535+
This input controls whether or not to log the coverage percentages to the GitHub Actions
536+
Workflow Job Summary. The default is `generate-workflow-summary: true`. This input is only
537+
relevant when running in GitHub Actions mode, and not when running as a CLI tool.
538+
533539

534540
### Outputs
535541

@@ -659,7 +665,7 @@ You can also use a specific release with:
659665
660666
```yml
661667
- name: Generate JaCoCo Badge
662-
uses: cicirello/jacoco-badge-generator@v2.9.0
668+
uses: cicirello/jacoco-badge-generator@v2.10.0
663669
with:
664670
generate-branches-badge: true
665671
```
@@ -697,6 +703,7 @@ what these inputs do.
697703
fail-if-branches-less-than: 0
698704
fail-on-coverage-decrease: false
699705
fail-on-branches-decrease: false
706+
generate-workflow-summary: true
700707
```
701708

702709
Since the above shows all of the default values of the action inputs,
@@ -1219,6 +1226,7 @@ you do not need to include them.
12191226
| `fail-if-branches-less-than: 0` | `--fail-if-branches-less-than 0` |
12201227
| `fail-on-coverage-decrease: false` | `--fail-on-coverage-decrease false` |
12211228
| `fail-on-branches-decrease: false` | `--fail-on-branches-decrease false` |
1229+
| `generate-workflow-summary: true` | n/a |
12221230

12231231
## Blog Posts
12241232

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# jacoco-badge-generator: Coverage badges, and pull request coverage checks,
22
# from JaCoCo reports in GitHub Actions
33
#
4-
# Copyright (c) 2020-2021 Vincent A Cicirello
4+
# Copyright (c) 2020-2023 Vincent A Cicirello
55
# https://www.cicirello.org/
66
#
77
# MIT License

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "hatchling.build"
44

55
[project]
66
name = "jacoco-badge-generator"
7-
version = "2.9.0"
7+
version = "2.10.0"
88
authors = [
99
{ name="Vincent A. Cicirello", email="development@cicirello.org" },
1010
]

0 commit comments

Comments
 (0)