File tree 3 files changed +26
-12
lines changed
3 files changed +26
-12
lines changed Original file line number Diff line number Diff line change
1
+ 2024-11-02 Dirk Eddelbuettel <
[email protected] >
2
+
3
+ * tests/tinytest.R: Minor code edit, removal of two no longer
4
+ required setters for tinytest
5
+
1
6
2024-11-01 Dirk Eddelbuettel <
[email protected] >
2
7
3
8
* DESCRIPTION (Version, Date): Roll micro version to 1.0.13.5
Original file line number Diff line number Diff line change 21
21
\item Changes in Rcpp Deployment :
22
22
\itemize {
23
23
\item One unit tests for arm64 macOS has been adjusted ; a macOS
24
- continuous integration runner was added
24
+ continuous integration runner was added ( Dirk in \ ghpr { 1324 })
25
25
\item Authors @ R is now used in DESCRIPTION as mandated by CRAN , the
26
- \code {Rcpp.package.skeleton()} function also creates it
26
+ \code {Rcpp.package.skeleton()} function also creates it (Dirk in
27
+ \ghpr {1325 } and \ghpr {1327 })
27
28
}
28
29
\item Changes in Rcpp Documentation :
29
30
\itemize {
30
31
\item The Rcpp Modules vignette was extended slightly following
31
- \ghit {1322 }
32
+ \ghit {1322 } ( Dirk )
32
33
\item Pdf vignettes have been regenerated under Ghostscript 10.03.1 to
33
34
avoid a false positive by a Windows virus scanner (I ñaki in \ghpr {1331 })
34
35
}
35
36
}
36
37
}
37
38
39
+ \section {Changes in Rcpp ' hot-fix' release version 1.0.13 - 1 (2024 - 11 - 01 )}{
40
+ \itemize {
41
+ \item Changes in Rcpp API :
42
+ \itemize {
43
+ \item Use read - only \code {VECTOR_PTR } and \code {STRING_PTR } only with
44
+ with R 4.5.0 or later (Kevin in \ghpr {1342 } fixing \ghit {1341 })
45
+ }
46
+ \item Changes in Rcpp Deployment :
47
+ \itemize {
48
+ \item Authors @ R is now used in DESCRIPTION as mandated by CRAN
49
+ }
50
+ }
51
+ }
52
+
38
53
\section {Changes in Rcpp release version 1.0.13 (2024 - 07 - 11 )}{
39
54
\itemize {
40
55
\item Changes in Rcpp API :
Original file line number Diff line number Diff line change 1
1
2
2
if (requireNamespace(" tinytest" , quietly = TRUE )) {
3
3
4
- # # Set a seed to make the test deterministic
5
- set.seed(42 )
6
-
7
- # # R makes us do this (but tinytest now sets it too)
8
- Sys.setenv(" R_TESTS" = " " )
9
-
10
4
# # Force tests to be executed if in dev release which we define as
11
5
# # 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
6
+ if (length(strsplit(format(packageVersion( " Rcpp" )) , " \\ ." )[[1 ]]) > 3 ) { # dev rel, and
13
7
if (Sys.getenv(" RunAllRcppTests" ) != " no" ) { # if env.var not yet set
14
- message(" Setting \" RunAllRcppTests\" =\" yes\" for development release\n " )
8
+ message(" Setting \" RunAllRcppTests\" =\" yes\" for development release" )
15
9
Sys.setenv(" RunAllRcppTests" = " yes" )
16
10
}
17
11
if (Sys.getenv(" RunVerboseRcppTests" ) != " no" ) { # if env.var not yet set
18
- message(" Setting \" RunVerboseRcppTests\" =\" yes\" for development release\n " )
12
+ message(" Setting \" RunVerboseRcppTests\" =\" yes\" for development release" )
19
13
Sys.setenv(" RunVerboseRcppTests" = " yes" )
20
14
}
21
15
}
You can’t perform that action at this time.
0 commit comments