Skip to content

Commit 68a5489

Browse files
committed
release 1.0.4
1 parent 186bfa0 commit 68a5489

File tree

4 files changed

+26
-10
lines changed

4 files changed

+26
-10
lines changed

ChangeLog

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
2020-03-13 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Date, Version): Release 1.0.4
4+
5+
* inst/include/Rcpp/config.h: Idem
6+
* inst/NEWS.Rd: Idem
7+
* vignettes/rmd/Rcpp.bib: Idem
8+
* inst/bib/Rcpp.bib: Idem
9+
10+
2020-03-12 Dirk Eddelbuettel <[email protected]>
11+
12+
* vignettes/rmd/Rcpp.bib: Updated to current package versions
13+
* inst/bib/Rcpp.bib: Idem
14+
115
2020-02-24 Dirk Eddelbuettel <[email protected]>
216

317
* inst/include/Rcpp/exceptions_impl.h: Remove spurious semicolon

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: 1.0.3.8
4-
Date: 2020-02-12
3+
Version: 1.0.4
4+
Date: 2020-03-13
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]>

inst/NEWS.Rd

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
\newcommand{\ghpr}{\href{https://github.com/RcppCore/Rcpp/pull/#1}{##1}}
44
\newcommand{\ghit}{\href{https://github.com/RcppCore/Rcpp/issues/#1}{##1}}
55

6-
\section{Changes in Rcpp version 1.0.4 (2020-03-xx)}{
6+
\section{Changes in Rcpp version 1.0.4 (2020-03-13)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
@@ -23,7 +23,7 @@
2323
\item The \code{cppFunction} helper now deals correctly with mulitple
2424
\code{depends} arguments (TJ McKinley in \ghpr{1016} fixing
2525
\ghit{1017}).
26-
\item Invisible return object are now supported via new option (Kun Ren
26+
\item Invisible return objects are now supported via new option (Kun Ren
2727
in \ghpr{1025} fixing \ghit{1024}).
2828
\item Unavailable packages referred to in \code{LinkingTo} are now
2929
reported (Dirk in \ghpr{1027} fixing \ghit{1026}).
@@ -33,12 +33,14 @@
3333
\item Changes in Rcpp Documentation:
3434
\itemize{
3535
\item The \code{.github/} directory now has more explicit guidance on
36-
contributinh, issues, and pull requests (Dirk).
36+
contributing, issues, and pull requests (Dirk).
3737
\item The Rcpp Attributes vignette describe the new invisible return
38-
objection option (Kun Ren in \ghpr{1025}).
38+
object option (Kun Ren in \ghpr{1025}).
3939
\item Vignettes are now included as pre-made pdf files (Dirk in \ghpr{1029})
4040
\item The Rcpp FAQ has new entry on the recommended
4141
\code{importFrom} directive (Dirk in \ghpr{1031} fixing \ghit{1030}).
42+
\item The bib file for the vignette was once again updated to
43+
current package versions.
4244
}
4345
\item Changes in Rcpp Deployment:
4446
\itemize{

inst/include/Rcpp/config.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@
2626
#define RcppDevVersion(maj, min, rev, dev) (((maj)*1000000) + ((min)*10000) + ((rev)*100) + (dev))
2727

2828
// the currently released version
29-
#define RCPP_VERSION Rcpp_Version(1,0,3)
30-
#define RCPP_VERSION_STRING "1.0.3"
29+
#define RCPP_VERSION Rcpp_Version(1,0,4)
30+
#define RCPP_VERSION_STRING "1.0.4"
3131

3232
// the current source snapshot
33-
#define RCPP_DEV_VERSION RcppDevVersion(1,0,3,8)
34-
#define RCPP_DEV_VERSION_STRING "1.0.3.8"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,4,0)
34+
#define RCPP_DEV_VERSION_STRING "1.0.4.0"
3535

3636
#endif

0 commit comments

Comments
 (0)