diff --git a/ChangeLog b/ChangeLog index f294ca410..ff4a57d70 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,17 @@ +2020-03-13 Dirk Eddelbuettel + + * DESCRIPTION (Date, Version): Release 1.0.4 + + * inst/include/Rcpp/config.h: Idem + * inst/NEWS.Rd: Idem + * vignettes/rmd/Rcpp.bib: Idem + * inst/bib/Rcpp.bib: Idem + +2020-03-12 Dirk Eddelbuettel + + * vignettes/rmd/Rcpp.bib: Updated to current package versions + * inst/bib/Rcpp.bib: Idem + 2020-02-24 Dirk Eddelbuettel * inst/include/Rcpp/exceptions_impl.h: Remove spurious semicolon diff --git a/DESCRIPTION b/DESCRIPTION index 311337f1d..0c82050cf 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: Rcpp Title: Seamless R and C++ Integration -Version: 1.0.3.8 -Date: 2020-02-12 +Version: 1.0.4 +Date: 2020-03-13 Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou, Nathan Russell, Douglas Bates and John Chambers Maintainer: Dirk Eddelbuettel diff --git a/inst/NEWS.Rd b/inst/NEWS.Rd index 60e59366f..5bde384fa 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 version 1.0.4 (2020-03-xx)}{ +\section{Changes in Rcpp version 1.0.4 (2020-03-13)}{ \itemize{ \item Changes in Rcpp API: \itemize{ @@ -23,7 +23,7 @@ \item The \code{cppFunction} helper now deals correctly with mulitple \code{depends} arguments (TJ McKinley in \ghpr{1016} fixing \ghit{1017}). - \item Invisible return object are now supported via new option (Kun Ren + \item Invisible return objects are now supported via new option (Kun Ren in \ghpr{1025} fixing \ghit{1024}). \item Unavailable packages referred to in \code{LinkingTo} are now reported (Dirk in \ghpr{1027} fixing \ghit{1026}). @@ -33,12 +33,14 @@ \item Changes in Rcpp Documentation: \itemize{ \item The \code{.github/} directory now has more explicit guidance on - contributinh, issues, and pull requests (Dirk). + contributing, issues, and pull requests (Dirk). \item The Rcpp Attributes vignette describe the new invisible return - objection option (Kun Ren in \ghpr{1025}). + object option (Kun Ren in \ghpr{1025}). \item Vignettes are now included as pre-made pdf files (Dirk in \ghpr{1029}) \item The Rcpp FAQ has new entry on the recommended \code{importFrom} directive (Dirk in \ghpr{1031} fixing \ghit{1030}). + \item The bib file for the vignette was once again updated to + current package versions. } \item Changes in Rcpp Deployment: \itemize{ diff --git a/inst/include/Rcpp/config.h b/inst/include/Rcpp/config.h index ee6b0d684..5be61471f 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,3) -#define RCPP_VERSION_STRING "1.0.3" +#define RCPP_VERSION Rcpp_Version(1,0,4) +#define RCPP_VERSION_STRING "1.0.4" // the current source snapshot -#define RCPP_DEV_VERSION RcppDevVersion(1,0,3,8) -#define RCPP_DEV_VERSION_STRING "1.0.3.8" +#define RCPP_DEV_VERSION RcppDevVersion(1,0,4,0) +#define RCPP_DEV_VERSION_STRING "1.0.4.0" #endif