Skip to content

Commit

Permalink
release 1.0.7
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Jul 7, 2021
1 parent 5fbb6f4 commit 42df734
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion ChangeLog
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
2021-07-03 Dirk Eddelbuettel <edd@debian.org>
2021-07-06 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION (Date, Version): Release 1.0.7

Expand All @@ -8,6 +8,11 @@
* inst/bib/Rcpp.bib: Idem
* vignettes/pdf/*: Rebuilt

2021-07-05 Iñaki Ucar <iucar@fedoraproject.org>

* src/barrier.cpp (Rcpp_precious_remove): Protect from call with
wrong token when unloading modules compiled under earlier version

2021-07-02 Dirk Eddelbuettel <edd@debian.org>

* inst/include/Rcpp/r/headers.h: Update notice as January 2022
Expand Down
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: Rcpp
Title: Seamless R and C++ Integration
Version: 1.0.7
Date: 2021-07-03
Date: 2021-07-06
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers
Maintainer: Dirk Eddelbuettel <edd@debian.org>
Expand Down
2 changes: 1 addition & 1 deletion inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
\newcommand{\ghpr}{\href{https://github.com/RcppCore/Rcpp/pull/#1}{##1}}
\newcommand{\ghit}{\href{https://github.com/RcppCore/Rcpp/issues/#1}{##1}}

\section{Changes in Rcpp release version 1.0.7 (2021-07-03)}{
\section{Changes in Rcpp release version 1.0.7 (2021-07-06)}{
\itemize{
\item Changes in Rcpp API:
\itemize{
Expand Down
2 changes: 1 addition & 1 deletion src/barrier.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ SEXP Rcpp_precious_preserve(SEXP object) {
}
// [[Rcpp::register]]
void Rcpp_precious_remove(SEXP token) {
if (token == R_NilValue) {
if (token == R_NilValue || TYPEOF(token) != LISTSXP) {
return;
}
SEXP before = CAR(token);
Expand Down

0 comments on commit 42df734

Please sign in to comment.