Skip to content

Commit

Permalink
release 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Mar 13, 2020
1 parent 186bfa0 commit 68a5489
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 10 deletions.
14 changes: 14 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
2020-03-13 Dirk Eddelbuettel <edd@debian.org>

* 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 <edd@debian.org>

* vignettes/rmd/Rcpp.bib: Updated to current package versions
* inst/bib/Rcpp.bib: Idem

2020-02-24 Dirk Eddelbuettel <edd@debian.org>

* inst/include/Rcpp/exceptions_impl.h: Remove spurious semicolon
Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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 <edd@debian.org>
Expand Down
10 changes: 6 additions & 4 deletions inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand All @@ -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}).
Expand All @@ -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{
Expand Down
8 changes: 4 additions & 4 deletions inst/include/Rcpp/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 68a5489

Please sign in to comment.