Skip to content

Commit 73d5eff

Browse files
committed
Rcpp 1.0.6
1 parent a2b3bc6 commit 73d5eff

File tree

5 files changed

+20
-11
lines changed

5 files changed

+20
-11
lines changed

ChangeLog

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
2021-01-14 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Date, Version): Release 1.0.6
4+
5+
* inst/include/Rcpp/config.h: Idem
6+
* inst/NEWS.Rd: Idem
7+
* vignettes/rmd/Rcpp.bib: Idem
8+
* inst/bib/Rcpp.bib: Idem
9+
110
2021-01-13 Dirk Eddelbuettel <[email protected]>
211

312
* vignettes/rmd/Rcpp.bib: Updated package versions

DESCRIPTION

+2-2
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.5.4
4-
Date: 2020-10-25
3+
Version: 1.0.6
4+
Date: 2021-01-14
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

+3-3
Original file line numberDiff line numberDiff line change
@@ -97,9 +97,9 @@ been factored out of Rcpp into the package RcppClassic, and it is still
9797
available for code relying on the older interface. New development should
9898
always use this Rcpp package instead.
9999

100-
Other usage examples are provided by packages using Rcpp. As of June 2020,
101-
there are 1990 [CRAN](https://cran.r-project.org) packages using Rcpp, a further
102-
203 [BioConductor](https://www.bioconductor.org) packages in its current release
100+
Other usage examples are provided by packages using Rcpp. As of January 2021,
101+
there are 2169 [CRAN](https://cran.r-project.org) packages using Rcpp, a further
102+
207 [BioConductor](https://www.bioconductor.org) packages in its current release
103103
as well as an unknown number of GitHub, Bitbucket, R-Forge, ... repositories
104104
using Rcpp. All these packages provide usage examples for Rcpp.
105105

inst/NEWS.Rd

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
\newcommand{\ghpr}{\href{https://github.com/RcppCore/Rcpp/pull/#1}{##1}}
44
\newcommand{\ghit}{\href{https://github.com/RcppCore/Rcpp/issues/#1}{##1}}
55

6-
\section{Changes in Rcpp patch release version 1.0.6 (2021-01-xx)}{
6+
\section{Changes in Rcpp patch release version 1.0.6 (2021-01-14)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{

inst/include/Rcpp/config.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
// config.h: Rcpp R/C++ interface class library -- Rcpp configuration
33
//
4-
// Copyright (C) 2010 - 2020 Dirk Eddelbuettel and Romain Francois
4+
// Copyright (C) 2010 - 2021 Dirk Eddelbuettel and Romain Francois
55
//
66
// This file is part of Rcpp.
77
//
@@ -26,11 +26,11 @@
2626
#define RcppDevVersion(maj, min, rev, dev) (((maj)*1000000) + ((min)*10000) + ((rev)*100) + (dev))
2727

2828
// the currently released version
29-
#define RCPP_VERSION Rcpp_Version(1,0,5)
30-
#define RCPP_VERSION_STRING "1.0.5"
29+
#define RCPP_VERSION Rcpp_Version(1,0,6)
30+
#define RCPP_VERSION_STRING "1.0.6"
3131

3232
// the current source snapshot
33-
#define RCPP_DEV_VERSION RcppDevVersion(1,0,5,4)
34-
#define RCPP_DEV_VERSION_STRING "1.0.5.4"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,6,0)
34+
#define RCPP_DEV_VERSION_STRING "1.0.6.0"
3535

3636
#endif

0 commit comments

Comments
 (0)