Skip to content
/ Rcpp Public
  • Sponsor
  • Notifications You must be signed in to change notification settings
  • Fork 219

Commit cefedb7

Browse files
committedApr 11, 2020
update NEWS, roll minor version and date
1 parent c655b6e commit cefedb7

File tree

4 files changed

+20
-9
lines changed

4 files changed

+20
-9
lines changed
 

‎ChangeLog

+5
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2020-04-11 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
* inst/include/Rcpp/config.h: Idem
5+
16
2020-04-10 Kevin Ushey <kevinushey@gmail.com>
27

38
* inst/include/Rcpp/macros/macros.h: Safer definition of short_file_name

‎DESCRIPTION

+2-2
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.4.6
4-
Date: 2020-04-01
3+
Version: 1.0.4.7
4+
Date: 2020-04-11
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <edd@debian.org>

‎inst/NEWS.Rd

+11-5
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 patch release version 1.0.4.6 (2020-04-02)}{
6+
\section{Changes in Rcpp patch release version 1.0.5 (2020-xx-yy)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
@@ -15,19 +15,25 @@
1515
the Rcpp namespace (Dirk in \ghpr{1054} fixing \ghit{1053}).
1616
\item A further updated corrected the header include and provided
1717
a missing else branch (Mattias Ellert in \ghpr{1055}).
18-
\item Two more assignments are protect with \code{Rcpp::Shield}
19-
(Dirk in \ghpr{1059})
18+
\item Two more assignments are protected with \code{Rcpp::Shield}
19+
(Dirk in \ghpr{1059}).
2020
}
2121
\item Changes in Rcpp Attributes:
2222
\itemize{
2323
\item Empty strings are not passed to \code{R CMD SHLIB} which was
24-
seen with R 4.0.0 on Windows (Kevin in \ghpr{1062} fixing \ghpr{1061}).
24+
seen with R 4.0.0 on Windows (Kevin in \ghpr{1062} fixing
25+
\ghpr{1061}).
26+
\item The \code{short_file_name()} helper function is safer with
27+
respect to temporaries (Kevin in \ghpr{1067} fixing \ghit{1066}).
2528
}
2629
\item Changes in Rcpp Deployment:
2730
\itemize{
2831
\item Travis CI unit tests now run a matrix over the versions of R
2932
also tested at CRAN (rel/dev/oldrel/oldoldrel), and coverage runs
30-
in parallel for a net speed-up (Dirk in \ghpr{1056} and \ghpr{1057}).
33+
in parallel for a net speed-up (Dirk in \ghpr{1056} and
34+
\ghpr{1057}).
35+
\item The exceptions test is now partially skipped on Solaris as
36+
it already is on Windows (Dirk in \ghpr{1065}).
3137
}
3238
}
3339
}

‎inst/include/Rcpp/config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#define RCPP_VERSION_STRING "1.0.4"
3131

3232
// the current source snapshot
33-
#define RCPP_DEV_VERSION RcppDevVersion(1,0,4,6)
34-
#define RCPP_DEV_VERSION_STRING "1.0.4.6"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,4,7)
34+
#define RCPP_DEV_VERSION_STRING "1.0.4.7"
3535

3636
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.