Skip to content

Commit

Permalink
Rcpp 1.0.6
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Jan 15, 2021
1 parent a2b3bc6 commit 73d5eff
Show file tree
Hide file tree
Showing 5 changed files with 20 additions and 11 deletions.
9 changes: 9 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
2021-01-14 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION (Date, Version): Release 1.0.6

* inst/include/Rcpp/config.h: Idem
* inst/NEWS.Rd: Idem
* vignettes/rmd/Rcpp.bib: Idem
* inst/bib/Rcpp.bib: Idem

2021-01-13 Dirk Eddelbuettel <edd@debian.org>

* vignettes/rmd/Rcpp.bib: Updated package versions
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: 1.0.5.4
Date: 2020-10-25
Version: 1.0.6
Date: 2021-01-14
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
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,9 +97,9 @@ been factored out of Rcpp into the package RcppClassic, and it is still
available for code relying on the older interface. New development should
always use this Rcpp package instead.

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

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 patch release version 1.0.6 (2021-01-xx)}{
\section{Changes in Rcpp patch release version 1.0.6 (2021-01-14)}{
\itemize{
\item Changes in Rcpp API:
\itemize{
Expand Down
10 changes: 5 additions & 5 deletions inst/include/Rcpp/config.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

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

// the currently released version
#define RCPP_VERSION Rcpp_Version(1,0,5)
#define RCPP_VERSION_STRING "1.0.5"
#define RCPP_VERSION Rcpp_Version(1,0,6)
#define RCPP_VERSION_STRING "1.0.6"

// the current source snapshot
#define RCPP_DEV_VERSION RcppDevVersion(1,0,5,4)
#define RCPP_DEV_VERSION_STRING "1.0.5.4"
#define RCPP_DEV_VERSION RcppDevVersion(1,0,6,0)
#define RCPP_DEV_VERSION_STRING "1.0.6.0"

#endif

0 comments on commit 73d5eff

Please sign in to comment.