Skip to content

Commit ebd782a

Browse files
committed
roll minor version, complete ChangeLog and NEWS
1 parent e3c8545 commit ebd782a

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

ChangeLog

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
2017-07-09 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Ditto
5+
6+
* inst/NEWS.Rd: Added missing entries
7+
8+
2017-07-08 Kirill Müller <[email protected]>
9+
10+
* inst/include/Rcpp/vector/no_init.h: Accept R_xlen_t instead of int
11+
12+
* inst/include/Rcpp/internal/wrap.h: Use R_xlen_t not int in loop unroll
13+
* inst/include/Rcpp/macros/unroll.h: Ditto
14+
* inst/include/Rcpp/vector/Vector.h: Ditto
15+
116
2017-07-05 Dirk Eddelbuettel <[email protected]>
217

318
* DESCRIPTION (Version, Date): Roll minor version

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: 0.12.11.4
4-
Date: 2017-07-05
3+
Version: 0.12.11.5
4+
Date: 2017-07-08
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: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@
99
\itemize{
1010
\item The \code{tinyformat.h} header now ends in a newline (\ghit{701}).
1111
\item Fixed rare protection error that occurred when fetching stack traces
12-
during the construction of an Rcpp exception (Kirill Müller;
13-
\ghit{706}).
12+
during the construction of an Rcpp exception (Kirill Müller in \ghpr{706}).
1413
\item Compilation is now also possibly on Haiku-OS (Yo Gong in \ghpr{708}
1514
addressing \ghit{707}).
1615
\item Dimension attributes are explicitly cast to \code{int} (Kirill
1716
Müller in \ghpr{715}).
1817
\item Unused arguments are no longer declared (Kirill Müller in \ghpr{716}).
18+
\item The \code{no_init()} constructor accepts \code{R_xlen_t} (Kirill
19+
Müller in \ghpr{730}).
20+
\item Loop unrolling used \code{R_xlen_t} (Kirill Müller in \ghpr{731}).
1921
}
2022
\item Changes in Rcpp Attributes:
2123
\itemize{
@@ -30,9 +32,10 @@
3032
\item Add Shield around parameters in Rcpp::interfaces (JJ in \ghpr{713}
3133
addressing \ghit{712}).
3234
\item Replace dot (".") with underscore ("_") in package names when generating
33-
native routine registrations (fixes \ghit{721}).
35+
native routine registrations (JJ in \ghpr{722} addressing \ghit{721}).
3436
\item Generate C++ native routines with underscore ("_") prefix to avoid
35-
exporting when standard exportPattern is used in NAMESPACE
37+
exporting when standard exportPattern is used in NAMESPACE (JJ in
38+
\ghpr{725} addressing \ghit{723}).
3639
}
3740
}
3841
}

inst/include/Rcpp/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#define RCPP_VERSION Rcpp_Version(0,12,11)
3131

3232
// the current source snapshot
33-
#define RCPP_DEV_VERSION RcppDevVersion(0,12,11,4)
33+
#define RCPP_DEV_VERSION RcppDevVersion(0,12,11,5)
3434

3535
#endif
3636

0 commit comments

Comments
 (0)