Skip to content

Commit c87126d

Browse files
PuzzledFaceJohn Kirkpatrick
andauthored
13 testing ggplot class (#14)
* Prepare for ggplot2 v4 release. * Prepare for ggplot2 v4 release. --------- Co-authored-by: John Kirkpatrick <mtdesign@puzzledface.net>
1 parent 6964ec1 commit c87126d

12 files changed

Lines changed: 1856 additions & 15 deletions

File tree

.Rbuildignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
^renv$
2+
^renv\.lock$
13
^.*\.Rproj$
24
^\.Rproj\.user$
35
^\.github$

.Rprofile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
source("renv/activate.R")

CRAN-SUBMISSION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Version: 0.1.0
2-
Date: 2022-10-25 07:05:08 UTC
3-
SHA: 406e43a970bbf5a956e9e4f57a81108ff5624c2b
1+
Version: 0.1.3
2+
Date: 2025-08-23 06:20:05 UTC
3+
SHA: ebf8b9d78ce4c3861aaf2dfc389346f02354d285

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: mtdesign
22
Type: Package
33
Title: Mander and Thompson Designs
4-
Version: 0.1.2
5-
Date: 2024-11-01
4+
Version: 0.1.3
5+
Date: 2025-08-21
66
Authors@R: person(
77
given = "John",
88
family = "Kirkpatrick",

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# mtdesign
22

3+
## Version 0.1.3
4+
* Update tests in preparation for ggplot2 version 4 release
5+
36
## Version 0.1.2
47
* Update author email address
58

R/RcppExports.R

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,14 @@
22
# Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393
33

44
simonProb <- function(p, n1, r1, n, r) {
5-
.Call("_mtdesign_simonProb", PACKAGE = "mtdesign", p, n1, r1, n, r)
5+
.Call('_mtdesign_simonProb', PACKAGE = 'mtdesign', p, n1, r1, n, r)
66
}
77

88
manderProb <- function(p, n1, r1, r2, n, r) {
9-
.Call("_mtdesign_manderProb", PACKAGE = "mtdesign", p, n1, r1, r2, n, r)
9+
.Call('_mtdesign_manderProb', PACKAGE = 'mtdesign', p, n1, r1, r2, n, r)
1010
}
1111

1212
augmentGridC <- function(d) {
13-
.Call("_mtdesign_augmentGridC", PACKAGE = "mtdesign", d)
13+
.Call('_mtdesign_augmentGridC', PACKAGE = 'mtdesign', d)
1414
}
15+

cran-comments.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# Submission
2-
This is a minor patch to update the maintainer's contact details as a result of a change of employer. A couple of minor bugs have also been fixed.
3-
2+
This is a minor patch to update unit tests in preparation for the release of `ggplot2` v4. The expected class of two objects has been updated. There are no other changes.
43
## R CMD check results
54

6-
Duration: 4m 31.5s
5+
Duration: 37.3s
76

87
0 errors ✔ | 0 warnings ✔ | 0 notes ✔
98

0 commit comments

Comments
 (0)