Skip to content

Commit

Permalink
Release 1.0.13
Browse files Browse the repository at this point in the history
After merely six days in the CRAN gestation chamber ...
  • Loading branch information
eddelbuettel committed Jul 17, 2024
1 parent 9c5f71c commit 19328ad
Show file tree
Hide file tree
Showing 17 changed files with 22 additions and 10 deletions.
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2024-07-11 Dirk Eddelbuettel <edd@debian.org>

* DESCRIPTION (Date, Version): Release 1.0.13

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

2024-07-07 Kevin Ushey <kevinushey@gmail.com>

* inst/include/Rcpp/internal/SEXP_Iterator.h: Avoid using VECTOR_PTR
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.12.4
Date: 2024-06-22
Version: 1.0.13
Date: 2024-07-11
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 README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
[![Dependencies](https://tinyverse.netlify.app/badge/Rcpp)](https://cran.r-project.org/package=Rcpp)
[![Coverage Status](https://codecov.io/gh/RcppCore/Rcpp/graph/badge.svg)](https://app.codecov.io/github/RcppCore/Rcpp?branch=master)
[![Debian package](https://img.shields.io/debian/v/r-cran-rcpp/sid?color=brightgreen)](https://packages.debian.org/sid/r-cran-rcpp)
[![r-universe](https://rcppcore.r-universe.dev/badges/Rcpp)](https://rcppcore.r-universe.dev/rcpp)
[![r-universe](https://rcppcore.r-universe.dev/badges/Rcpp)](https://rcppcore.r-universe.dev/Rcpp)
[![Last Commit](https://img.shields.io/github/last-commit/RcppCore/Rcpp)](https://github.com/RcppCore/Rcpp)
[![Downloads (monthly)](https://cranlogs.r-pkg.org/badges/Rcpp?color=brightgreen)](https://www.r-pkg.org/pkg/Rcpp)
[![Downloads (total)](https://cranlogs.r-pkg.org/badges/grand-total/Rcpp?color=brightgreen)](https://www.r-pkg.org/pkg/Rcpp)
Expand Down
4 changes: 3 additions & 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.13 (2024-xx-yy)}{
\section{Changes in Rcpp release version 1.0.13 (2024-07-11)}{
\itemize{
\item Changes in Rcpp API:
\itemize{
Expand All @@ -17,6 +17,8 @@
\ghpr{1310})
\item Rcpp now emits an R warning on out-of-bounds Vector accesses. This
may become an error in a future Rcpp release. (Kevin in \ghpr{1310})
\item Switch \code{VECTOR_PTR} and \code{STRING_PTR} to new API-compliant
\code{RO} variants (Kevin in \ghpr{1317} fixing \ghit{1316})
}
\item Changes in Rcpp Deployment:
\itemize{
Expand Down
2 changes: 1 addition & 1 deletion inst/bib/Rcpp.bib
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ @Manual{CRAN:Rcpp
Allaire and Kevin Ushey and Qiang Kou and
Nathan Russel and John Chambers and Douglas Bates},
year = 2024,
note = {R package version 1.0.12},
note = {R package version 1.0.13},
url = CRAN # "package=Rcpp"
}

Expand Down
8 changes: 4 additions & 4 deletions inst/include/Rcpp/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,12)
#define RCPP_VERSION_STRING "1.0.12"
#define RCPP_VERSION Rcpp_Version(1,0,13)
#define RCPP_VERSION_STRING "1.0.13"

// the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it)
#define RCPP_DEV_VERSION RcppDevVersion(1,0,12,4)
#define RCPP_DEV_VERSION_STRING "1.0.12.4"
#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,0)
#define RCPP_DEV_VERSION_STRING "1.0.13.0"

#endif
Binary file added vignettes/Rcpp-FAQ.pdf
Binary file not shown.
Binary file added vignettes/Rcpp-attributes.pdf
Binary file not shown.
Binary file added vignettes/Rcpp-extending.pdf
Binary file not shown.
Binary file added vignettes/Rcpp-introduction.pdf
Binary file not shown.
Binary file added vignettes/Rcpp-jss-2011.pdf
Binary file not shown.
Binary file added vignettes/Rcpp-libraries.pdf
Binary file not shown.
Binary file added vignettes/Rcpp-modules.pdf
Binary file not shown.
Binary file added vignettes/Rcpp-package.pdf
Binary file not shown.
Binary file added vignettes/Rcpp-quickref.pdf
Binary file not shown.
Binary file added vignettes/Rcpp-sugar.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion vignettes/rmd/Rcpp.bib
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ @Manual{CRAN:Rcpp
Allaire and Kevin Ushey and Qiang Kou and
Nathan Russel and John Chambers and Douglas Bates},
year = 2024,
note = {R package version 1.0.12},
note = {R package version 1.0.13},
url = CRAN # "package=Rcpp"
}

Expand Down

0 comments on commit 19328ad

Please sign in to comment.