Skip to content

Commit 2d4eb21

Browse files
committed
update ChangeLog and NEWS, roll minor version
1 parent 1986ded commit 2d4eb21

File tree

4 files changed

+29
-13
lines changed

4 files changed

+29
-13
lines changed

ChangeLog

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2018-07-12 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
* inst/include/Rcpp/config.h: Idem
5+
6+
2018-07-12 Jack Wasey <[email protected]>
7+
8+
* R/Attributes.R: Use case-insensitive sort of filenames to make
9+
RcppExports more deterministic
110

211
2018-07-10 Lionel Henry <[email protected]>
312

@@ -8,21 +17,21 @@
817
* inst/include/Rcpp/macros/macros.h (VOID_END_RCPP): idem
918
* src/attributes.cpp: idem
1019

20+
2018-07-09 Dirk Eddelbuettel <[email protected]>
21+
22+
* src/Date.cpp: Skip 'tm_gmtoff' on AIX as well (thanks to PR 876
23+
by @ayappanec)
24+
1125
2018-07-05 Lionel Henry <[email protected]>
1226

1327
* inst/include/Rcpp/api/meat/Rcpp_eval.h: Rename `RCPP_PROTECTED_EVAL`
1428
to `RCPP_USE_UNWIND_PROTECT` because the new API is now more general
1529
than just evaluation of R code.
1630
* inst/NEWS.Rd: idem
1731
* inst/unitTests/runit.interface.R: idem
18-
19-
2018-07-05 Lionel Henry <[email protected]>
20-
2132
* R/unit.tests.R (unitTestSetup): Pass extra arguments to sourceCpp()
2233
for easier debugging.
2334

24-
2018-07-05 Lionel Henry <[email protected]>
25-
2635
* R/Attributes.R (.plugins[["unwindProtect"]]): You can now add
2736
`[[Rcpp::plugins(unwindProtect)]]` in one of your source file to enable
2837
the new unwind-protect mechanism easily. It appends
@@ -115,7 +124,7 @@
115124

116125
* inst/include/Rcpp/api/meat/Rcpp_eval.h: Evaluate in base env
117126

118-
2018-06-05 Jack Wasey <[email protected]>
127+
2018-06-05 Jack Wasey <[email protected]>
119128

120129
* inst/include/Rcpp/r_cast.h: Error and abort if debugging
121130

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.17.3
4-
Date: 2018-06-15
3+
Version: 0.12.17.4
4+
Date: 2018-07-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: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
10-
\item The \code{sourceCpp()} function now evaluates R code in the
11-
correct local environment in which a function was compiled (Filip
12-
Schouwenaars in \ghpr{852} and \ghpr{869} fixing \ghit{851}).
1310
\item The \code{StringProxy::operator==} is now \code{const}
1411
correct (Romain in \ghpr{855} fixing \ghit{854}).
1512
\item The \code{Environment::new_child()} is now \code{const}
@@ -32,7 +29,17 @@
3229
Kou in \ghpr{867} closing \ghit{866}).
3330
\item The \code{Rcpp::unwindProtect()} function extracts the
3431
unwinding from the \code{Rcpp_fast_eval()} function and makes it
35-
more generally available. (Lionel in \ghpr{873}).
32+
more generally available. (Lionel in \ghpr{873} and \ghpr{877}).
33+
\item The \code{tm_gmtoff} part is skipped on AIX too (\ghpr{876}).
34+
}
35+
\item Changes in Rcpp Attributes:
36+
\itemize{
37+
\item The \code{sourceCpp()} function now evaluates R code in the
38+
correct local environment in which a function was compiled (Filip
39+
Schouwenaars in \ghpr{852} and \ghpr{869} fixing \ghit{851}).
40+
\item Filenames are now sorted in a case-insenstive way so that
41+
the \code{RcppExports} files are more stable across locales (Jack
42+
Wasey in \ghpr{878}).
3643
}
3744
}
3845
}

inst/include/Rcpp/config.h

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

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

3535
#endif

0 commit comments

Comments
 (0)