Skip to content

Commit 4954e56

Browse files
committed
updated ChangeLog and NEWS, rolled minor version
1 parent 446c3ca commit 4954e56

File tree

5 files changed

+17
-9
lines changed

5 files changed

+17
-9
lines changed

ChangeLog

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
1+
2020-04-16 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll minor version
4+
* inst/include/Rcpp/config.h: Idem
5+
16
2020-04-15 Kevin Ushey <[email protected]>
27

38
* inst/include/Rcpp/String.h: Avoid 'debug' namespace collisions
49
* inst/include/Rcpp/macros/debug.h: Idem
510
* inst/include/Rcpp/macros/macros.h: Idem
611

7-
2020-04-15 Uwe Korn <[email protected]>
12+
2020-04-15 Uwe Korn <[email protected]>
813

914
* inst/include/Rcpp/DataFrame.h: Explicit call to scalar std::abs
1015

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: 1.0.4.7
4-
Date: 2020-04-11
3+
Version: 1.0.4.8
4+
Date: 2020-04-16
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]>

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@
66
[![Dependencies](https://tinyverse.netlify.com/badge/Rcpp)](https://cran.r-project.org/package=Rcpp)
77
[![Coverage Status](https://codecov.io/gh/RcppCore/Rcpp/graph/badge.svg)](https://codecov.io/github/RcppCore/Rcpp?branch=master)
88
[![Debian package](https://img.shields.io/debian/v/r-cran-rcpp/sid?color=brightgreen)](https://packages.debian.org/sid/r-cran-rcpp)
9-
[![Last Commit](https://img.shields.io/github/last-commit/RcppCore/Rcpp)](https://github.com/RcppCore/Rcpp)
9+
[![Last Commit](https://img.shields.io/github/last-commit/RcppCore/Rcpp)](https://github.com/RcppCore/Rcpp)
1010
[![Downloads](http://cranlogs.r-pkg.org/badges/Rcpp?color=brightgreen)](http://www.r-pkg.org/pkg/Rcpp)
1111
[![CRAN use](https://jangorecki.gitlab.io/rdeps/Rcpp/CRAN_usage.svg?sanitize=true)](https://cran.r-project.org/package=Rcpp)
1212
[![CRAN indirect](https://jangorecki.gitlab.io/rdeps/Rcpp/indirect_usage.svg?sanitize=true)](https://cran.r-project.org/package=Rcpp)
1313
[![BioConductor use](https://jangorecki.gitlab.io/rdeps/Rcpp/BioC_usage.svg?sanitize=true)](https://cran.r-project.org/package=Rcpp)
14-
[![StackOverflow](https://img.shields.io/badge/stackoverflow-rcpp-orange.svg)](https://stackoverflow.com/questions/tagged/rcpp)
14+
[![StackOverflow](https://img.shields.io/badge/stackoverflow-rcpp-orange.svg)](https://stackoverflow.com/questions/tagged/rcpp)
1515
[![JSS](https://img.shields.io/badge/JSS-10.18637%2Fjss.v040.i08-brightgreen)](http://dx.doi.org/10.18637/jss.v040.i08)
1616
[![Springer useR!](https://img.shields.io/badge/Springer%20useR!-10.1007%2F978--1--4614--6868--4-brightgreen)](https://www.springer.com/gp/book/9781461468677)
1717
[![TAS](https://img.shields.io/badge/TAS-10.1080%2F00031305.2017.1375990-brightgreen)](http://dx.doi.org/10.1080/00031305.2017.1375990)
1818

1919
### Synopsis
2020

21-
The [Rcpp package](https://cran.r-project.org/package=Rcpp) help to integrate R and C++ via R functions and a (header-only) C++ library.
21+
The [Rcpp package](https://cran.r-project.org/package=Rcpp) integrates R and C++ via R functions and a (header-only) C++ library.
2222

2323
All underlying R types and objects, _i.e._, everything a `SEXP` represents internally
2424
in R, are matched to corresponding C++ objects. This covers anything from vectors,

inst/NEWS.Rd

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,14 +17,17 @@
1717
a missing else branch (Mattias Ellert in \ghpr{1055}).
1818
\item Two more assignments are protected with \code{Rcpp::Shield}
1919
(Dirk in \ghpr{1059}).
20+
\item One call to \code{abs} is now properly namespaced with
21+
\code{std::} (Uwe Korn in \ghpr{1069}).
2022
}
2123
\item Changes in Rcpp Attributes:
2224
\itemize{
2325
\item Empty strings are not passed to \code{R CMD SHLIB} which was
2426
seen with R 4.0.0 on Windows (Kevin in \ghpr{1062} fixing
2527
\ghpr{1061}).
2628
\item The \code{short_file_name()} helper function is safer with
27-
respect to temporaries (Kevin in \ghpr{1067} fixing \ghit{1066}).
29+
respect to temporaries (Kevin in \ghpr{1067} fixing \ghit{1066},
30+
and \ghpr{1071} fixing \ghpr{1070}).
2831
}
2932
\item Changes in Rcpp Deployment:
3033
\itemize{

inst/include/Rcpp/config.h

Lines changed: 2 additions & 2 deletions
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,7)
34-
#define RCPP_DEV_VERSION_STRING "1.0.4.7"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,4,8)
34+
#define RCPP_DEV_VERSION_STRING "1.0.4.8"
3535

3636
#endif

0 commit comments

Comments
 (0)