Skip to content

Commit

Permalink
update ChangeLog and NEWS, roll minor version
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Jul 13, 2018
1 parent 1986ded commit 2d4eb21
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 13 deletions.
21 changes: 15 additions & 6 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2018-07-12 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION (Version, Date): Roll minor version
* inst/include/Rcpp/config.h: Idem

2018-07-12 Jack Wasey <jack@jackwasey.com>

* R/Attributes.R: Use case-insensitive sort of filenames to make
RcppExports more deterministic

2018-07-10 Lionel Henry <lionel@rstudio.com>

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

2018-07-09 Dirk Eddelbuettel <edd@debian.org>

* src/Date.cpp: Skip 'tm_gmtoff' on AIX as well (thanks to PR 876
by @ayappanec)

2018-07-05 Lionel Henry <lionel@rstudio.com>

* inst/include/Rcpp/api/meat/Rcpp_eval.h: Rename `RCPP_PROTECTED_EVAL`
to `RCPP_USE_UNWIND_PROTECT` because the new API is now more general
than just evaluation of R code.
* inst/NEWS.Rd: idem
* inst/unitTests/runit.interface.R: idem

2018-07-05 Lionel Henry <lionel@rstudio.com>

* R/unit.tests.R (unitTestSetup): Pass extra arguments to sourceCpp()
for easier debugging.

2018-07-05 Lionel Henry <lionel@rstudio.com>

* R/Attributes.R (.plugins[["unwindProtect"]]): You can now add
`[[Rcpp::plugins(unwindProtect)]]` in one of your source file to enable
the new unwind-protect mechanism easily. It appends
Expand Down Expand Up @@ -115,7 +124,7 @@

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

2018-06-05 Jack Wasey <jack@jackwasey.com>
2018-06-05 Jack Wasey <jack@jackwasey.com>

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

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: 0.12.17.3
Date: 2018-06-15
Version: 0.12.17.4
Date: 2018-07-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
15 changes: 11 additions & 4 deletions inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@
\itemize{
\item Changes in Rcpp API:
\itemize{
\item The \code{sourceCpp()} function now evaluates R code in the
correct local environment in which a function was compiled (Filip
Schouwenaars in \ghpr{852} and \ghpr{869} fixing \ghit{851}).
\item The \code{StringProxy::operator==} is now \code{const}
correct (Romain in \ghpr{855} fixing \ghit{854}).
\item The \code{Environment::new_child()} is now \code{const}
Expand All @@ -32,7 +29,17 @@
Kou in \ghpr{867} closing \ghit{866}).
\item The \code{Rcpp::unwindProtect()} function extracts the
unwinding from the \code{Rcpp_fast_eval()} function and makes it
more generally available. (Lionel in \ghpr{873}).
more generally available. (Lionel in \ghpr{873} and \ghpr{877}).
\item The \code{tm_gmtoff} part is skipped on AIX too (\ghpr{876}).
}
\item Changes in Rcpp Attributes:
\itemize{
\item The \code{sourceCpp()} function now evaluates R code in the
correct local environment in which a function was compiled (Filip
Schouwenaars in \ghpr{852} and \ghpr{869} fixing \ghit{851}).
\item Filenames are now sorted in a case-insenstive way so that
the \code{RcppExports} files are more stable across locales (Jack
Wasey in \ghpr{878}).
}
}
}
Expand Down
2 changes: 1 addition & 1 deletion inst/include/Rcpp/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,6 @@
#define RCPP_VERSION Rcpp_Version(0,12,17)

// the current source snapshot
#define RCPP_DEV_VERSION RcppDevVersion(0,12,17,3)
#define RCPP_DEV_VERSION RcppDevVersion(0,12,17,4)

#endif

0 comments on commit 2d4eb21

Please sign in to comment.