From d5964f8195a04ac324cd4ac72f53bf087cc5d5e4 Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Mon, 3 Jul 2023 10:59:00 -0500 Subject: [PATCH] Release 1.0.11 --- ChangeLog | 17 +++++++++++++++++ DESCRIPTION | 4 ++-- inst/NEWS.Rd | 15 +++++++++++---- inst/include/Rcpp/config.h | 8 ++++---- 4 files changed, 34 insertions(+), 10 deletions(-) diff --git a/ChangeLog b/ChangeLog index 8250f456f..c7d858a35 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2023-07-03 Dirk Eddelbuettel + + * DESCRIPTION (Date, Version): Release 1.0.11 + + * inst/include/Rcpp/config.h: Idem + * inst/NEWS.Rd: Idem + * vignettes/rmd/Rcpp.bib: Idem + * inst/bib/Rcpp.bib: Idem + * vignettes/pdf/*: Rebuilt + 2023-07-02 Dirk Eddelbuettel * README.md: Update usage numbers in Examples section @@ -95,6 +105,13 @@ * R/RcppLdpath.R: CxxFlags() now quotes only non-standard paths on linux +2023-01-22 Dirk Eddelbuettel + + * DESCRIPTION (Date, Version): Release 1.0.10 + + * inst/include/Rcpp/config.h: Idem + * inst/NEWS.Rd: Idem + 2023-01-08 Dirk Eddelbuettel * inst/include/Rcpp/String.h: Address clang++-14 conversion warning diff --git a/DESCRIPTION b/DESCRIPTION index abc625669..bc6803001 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: Rcpp Title: Seamless R and C++ Integration -Version: 1.0.10.5 -Date: 2023-06-12 +Version: 1.0.11 +Date: 2023-07-03 Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou, Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers Maintainer: Dirk Eddelbuettel diff --git a/inst/NEWS.Rd b/inst/NEWS.Rd index 7ccabdba6..590bba703 100644 --- a/inst/NEWS.Rd +++ b/inst/NEWS.Rd @@ -3,7 +3,7 @@ \newcommand{\ghpr}{\href{https://github.com/RcppCore/Rcpp/pull/#1}{##1}} \newcommand{\ghit}{\href{https://github.com/RcppCore/Rcpp/issues/#1}{##1}} -\section{Changes in Rcpp rc version 1.0.10.3 for 1.0.11 (2023-07-xx)}{ +\section{Changes in Rcpp rc version 1.0.11 (2023-07-03)}{ \itemize{ \item Changes in Rcpp API: \itemize{ @@ -12,19 +12,26 @@ \item Two unit tests no longer accidentally bark on stdout (Dirk and Iñaki in \ghpr{1245}). \item Compilation under C++ using \pkg{clang++} and its standard - library is enabled (Dirk in \ghpr{1248}) closing \ghit{1244}). + library is enabled (Dirk in \ghpr{1248} closing \ghit{1244}). \item Use backticks in a generated \code{.Call()} statement in `RcppExports.R` (Dirk \ghpr{1256} closing \ghit{1255}). + \item Switch to \code{system2()} to capture standard error messages in + error cases (Iñaki in \ghpr{1259} and \ghpr{1261} fixing \ghit{1257}). } \item Changes in Rcpp Documentation: \itemize{ \item The CITATION file format has been updated (Dirk in \ghpr{1250} - fixing \ghit{1249}. + fixing \ghit{1249}). } \item Changes in Rcpp Deployment: \itemize{ \item A test for \code{qnorm} now uses the more accurate value from R - 4.3.0 (Dirk in \ghpr{1252} fixing \ghit{1251}). + 4.3.0 (Dirk in \ghpr{1252} and \ghpr{1260} fixing \ghit{1251}). + \item Skip tests with path issues on Windows (Iñaki in \ghpr{1258}). + \item Container deployment in continuous integrations was + improved. (Iñaki and Dirk in \ghpr{1264}, Dirk in \ghpr{1269}). + \item Several files receives minor edits to please \code{R CMD check} + from r-devel (Dirk in \ghpr{1267}). } } } diff --git a/inst/include/Rcpp/config.h b/inst/include/Rcpp/config.h index 9f542285f..ccbbe4d67 100644 --- a/inst/include/Rcpp/config.h +++ b/inst/include/Rcpp/config.h @@ -26,11 +26,11 @@ #define RcppDevVersion(maj, min, rev, dev) (((maj)*1000000) + ((min)*10000) + ((rev)*100) + (dev)) // the currently released version -#define RCPP_VERSION Rcpp_Version(1,0,10) -#define RCPP_VERSION_STRING "1.0.10" +#define RCPP_VERSION Rcpp_Version(1,0,11) +#define RCPP_VERSION_STRING "1.0.11" // the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it) -#define RCPP_DEV_VERSION RcppDevVersion(1,0,10,5) -#define RCPP_DEV_VERSION_STRING "1.0.10.5" +#define RCPP_DEV_VERSION RcppDevVersion(1,0,11,0) +#define RCPP_DEV_VERSION_STRING "1.0.11.0" #endif