Skip to content

Commit 72de32d

Browse files
committed
release 0.12.19
1 parent 9e522f5 commit 72de32d

File tree

4 files changed

+18
-12
lines changed

4 files changed

+18
-12
lines changed

ChangeLog

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
1-
2018-09-20 Dirk Eddelbuettel <[email protected]>
1+
2018-09-21 Dirk Eddelbuettel <[email protected]>
22

33
* DESCRIPTION: Release 0.12.19
44
* inst/NEWS.Rd: Idem
55
* inst/bib/Rcpp.bib: Idem
66
* vignettes/Rcpp.bib: Idem
77
* inst/include/Rcpp/config.h: Idem
88

9+
* R/RcppLdpath.R (RcppLdPath, RcppLdFlags, CxxFlags, RcppCxx0xFlags):
10+
After discussion with CRAN, do not mark as .Deprecated() as too many
11+
packages are involved. This will need to be phased in more slowly.
12+
13+
2018-09-20 Dirk Eddelbuettel <[email protected]>
14+
915
* vignettes/Rcpp-FAQ.Rmd: Set 'eval=FALSE' on another
1016
RcppArmadillo example to not create a build-time dependency
1117

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
33
Version: 0.12.19
4-
Date: 2018-09-20
4+
Date: 2018-09-21
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

R/RcppLdpath.R

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ Rcpp.system.file <- function(...){
2323
## Use R's internal knowledge of path settings to find the lib/ directory
2424
## plus optinally an arch-specific directory on system building multi-arch
2525
RcppLdPath <- function() {
26-
.Deprecated(msg=paste("This function is now deprecated as it has not",
27-
"been needed since 2013."))
26+
#.Deprecated(msg=paste("This function is now deprecated as it has not",
27+
# "been needed since 2013."))
2828
""
2929
}
3030

@@ -37,8 +37,8 @@ RcppLdPath <- function() {
3737
## Note that this is probably being called from LdFlags()
3838
## Updated Nov 2013: We no longer build a library. This should be deprecated.
3939
RcppLdFlags <- function() {
40-
.Deprecated(msg=paste("This function is now deprecated as it has not",
41-
"been needed since 2013."))
40+
#.Deprecated(msg=paste("This function is now deprecated as it has not",
41+
# "been needed since 2013."))
4242
""
4343
}
4444

@@ -58,8 +58,8 @@ RcppCxxFlags <- function(cxx0x=FALSE) {
5858
## Shorter names, and call cat() directly
5959
## CxxFlags defaults to no using c++0x extensions are these are considered non-portable
6060
CxxFlags <- function(cxx0x=FALSE) {
61-
.Deprecated(msg=paste("This function is now deprecated as R uses minimally",
62-
"viable compilers om all platforme."))
61+
#.Deprecated(msg=paste("This function is now deprecated as R uses minimally",
62+
# "viable compilers om all platforme."))
6363
cat(RcppCxxFlags(cxx0x=cxx0x))
6464
}
6565

@@ -74,8 +74,8 @@ RcppCapabilities <- capabilities <- function() .Call( rcpp_capabilities )
7474
# compile, load and call the cxx0x.c script to identify whether
7575
# the compiler is GCC >= 4.3
7676
RcppCxx0xFlags <- function() {
77-
.Deprecated(msg=paste("This function is now deprecated as R uses minimally",
78-
"viable compilers om all platforme."))
77+
#.Deprecated(msg=paste("This function is now deprecated as R uses minimally",
78+
# "viable compilers om all platforme."))
7979
script <- Rcpp.system.file( "discovery", "cxx0x.R" )
8080
flag <- capture.output( source( script ) )
8181
flag

inst/NEWS.Rd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@
3636
}
3737
\item Changes in Rcpp Deployment:
3838
\itemize{
39-
\item The old \code{LdFlags()} build helper is now deprecated
40-
(Dirk in \ghpr{887}).
39+
\item The old \code{LdFlags()} build helper was marked as
40+
deprecated [but removed for release] (Dirk in \ghpr{887}).
4141
\item Dockerfiles for continuous integration, standard deployment
4242
and 'plus sized' deployment are provided along with builds
4343
(Dirk in \ghpr{894}).

0 commit comments

Comments
 (0)