Skip to content

Commit 21fd45f

Browse files
committed
roll Date and Version; add fix for requireNamespace
1 parent 18f4b8a commit 21fd45f

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2015-06-05 Dirk Eddelbuettel <[email protected]>
2+
3+
* R/Rcpp.package.skeleton.R (Rcpp.package.skeleton): Remove
4+
`character.only=TRUE` from `requireNamespace()` as it happens to flip
5+
the boolean value too
6+
17
2015-05-17 Matt P. Dziubinski <[email protected]>
28

39
* inst/include/Rcpp/platform/compiler.h: Added RCPP_USING_CXX0X_OR_LATER

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 0.11.6.1
4-
Date: 2015-05-16
3+
Version: 0.11.6.2
4+
Date: 2015-06-04
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey,
66
Douglas Bates, and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

R/Rcpp.package.skeleton.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Rcpp.package.skeleton <- function(name = "anRpackage", list = character(),
2828
email = "[email protected]",
2929
license = "GPL (>= 2)") {
3030

31-
havePkgKitten <- requireNamespace("pkgKitten", quietly=TRUE, character.only=TRUE)
31+
havePkgKitten <- requireNamespace("pkgKitten", quietly=TRUE)
3232

3333
call <- match.call()
3434
call[[1]] <- as.name("package.skeleton")

0 commit comments

Comments
 (0)