Skip to content

Commit d570817

Browse files
Bump version to 0.13.5 and revert 100% coverage enforcement
- Bump version: 0.13.4 -> 0.13.5 - Add NEWS.md entry for v0.13.5 - Update cran-comments.md with release notes - Revert codecov.yaml to auto target (coverage is ~98.5%, not 100%) - Revert test-coverage.yaml to not enforce 100% coverage Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
1 parent 3fdc365 commit d570817

File tree

5 files changed

+15
-15
lines changed

5 files changed

+15
-15
lines changed

.github/workflows/test-coverage.yaml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -31,11 +31,5 @@ jobs:
3131
- name: Test coverage
3232
run: |
3333
options(crayon.enabled = TRUE)
34-
cov <- covr::package_coverage()
35-
pct <- covr::percent_coverage(cov)
36-
cat(sprintf("\nCode coverage: %.2f%%\n", pct))
37-
covr::codecov(coverage = cov, quiet = FALSE)
38-
if (pct < 100) {
39-
stop(sprintf("Code coverage is %.2f%%, which is below the required 100%%", pct))
40-
}
34+
covr::codecov(quiet = FALSE)
4135
shell: Rscript {0}

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: ggstatsplot
33
Title: 'ggplot2' Based Plots with Statistical Details
4-
Version: 0.13.4
4+
Version: 0.13.5
55
Authors@R:
66
person("Indrajeet", "Patil", , "patilindrajeet.science@gmail.com", role = c("cre", "aut", "cph"),
77
comment = c(ORCID = "0000-0003-1995-6531"))

NEWS.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
# ggstatsplot 0.13.5
2+
3+
## MINOR CHANGES
4+
5+
- Maintenance release to adapt to API changes in `{dplyr}` (v1.2.0) and `{purrr}` (v1.2.1).
6+
17
# ggstatsplot 0.13.4
28

39
N.B. All statistical analysis in `{ggstatsplot}` is carried out in

codecov.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ coverage:
22
status:
33
project:
44
default:
5-
target: 100%
6-
threshold: 0%
7-
informational: false
5+
target: auto
6+
threshold: 1%
7+
informational: true
88
patch:
99
default:
10-
target: 100%
11-
threshold: 0%
12-
informational: false
10+
target: auto
11+
threshold: 1%
12+
informational: true

cran-comments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
0 errors | 0 warnings | 0 note
44

5-
- Maintenance release.
5+
- Maintenance release to adapt to API changes in `{dplyr}` (v1.2.0) and `{purrr}` (v1.2.1).
66

77
## revdepcheck results
88

0 commit comments

Comments
 (0)