Skip to content

Commit 136ec60

Browse files
authored
Merge pull request #1206 from RcppCore/feature/shorter_tests
Limit testing scope to stay withing CRAN time buckets
2 parents f12d9fd + e389aab commit 136ec60

File tree

5 files changed

+16
-6
lines changed

5 files changed

+16
-6
lines changed

ChangeLog

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
2022-03-13 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
* inst/include/Rcpp/config.h: Idem
5+
6+
* tests/tinytest.R: Disable full tests on four-digits release to not
7+
exceed CRAN test time preference
8+
19
2022-03-10 Dirk Eddelbuettel <[email protected]>
210

311
* DESCRIPTION (Version, Date): Roll minor version

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 1.0.8.2
4-
Date: 2022-03-10
3+
Version: 1.0.8.3
4+
Date: 2022-03-13
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

inst/NEWS.Rd

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
\newcommand{\ghpr}{\href{https://github.com/RcppCore/Rcpp/pull/#1}{##1}}
44
\newcommand{\ghit}{\href{https://github.com/RcppCore/Rcpp/issues/#1}{##1}}
55

6-
\section{Changes in Rcpp hotfix release version 1.0.8.2 (2022-03-10)}{
6+
\section{Changes in Rcpp hotfix release version 1.0.8.3 (2022-03-13)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
@@ -22,6 +22,8 @@
2222
\item Changes in Rcpp Deployment:
2323
\itemize{
2424
\item Accomodate four digit version numbers in unit test (Dirk)
25+
\item Do not run complete test suite to limit test time to CRAN
26+
preference (Dirk)
2527
}
2628
}
2729
}

inst/include/Rcpp/config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#define RCPP_VERSION_STRING "1.0.8"
3131

3232
// the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it)
33-
#define RCPP_DEV_VERSION RcppDevVersion(1,0,8,2)
34-
#define RCPP_DEV_VERSION_STRING "1.0.8.2"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,8,3)
34+
#define RCPP_DEV_VERSION_STRING "1.0.8.3"
3535

3636
#endif

tests/tinytest.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ if (requireNamespace("tinytest", quietly=TRUE)) {
99

1010
## Force tests to be executed if in dev release which we define as
1111
## having a sub-release, eg 0.9.15.5 is one whereas 0.9.16 is not
12-
if (length(strsplit(packageDescription("Rcpp")$Version, "\\.")[[1]]) > 3) { # dev rel, and
12+
if (FALSE && length(strsplit(packageDescription("Rcpp")$Version, "\\.")[[1]]) > 3) { # dev rel, and
1313
if (Sys.getenv("RunAllRcppTests") != "no") { # if env.var not yet set
1414
message("Setting \"RunAllRcppTests\"=\"yes\" for development release\n")
1515
Sys.setenv("RunAllRcppTests"="yes")

0 commit comments

Comments
 (0)