Skip to content

Commit 19328ad

Browse files
committed
Release 1.0.13
After merely six days in the CRAN gestation chamber ...
1 parent 9c5f71c commit 19328ad

17 files changed

+22
-10
lines changed

ChangeLog

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2024-07-11 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Date, Version): Release 1.0.13
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+
* vignettes/pdf/*: Rebuilt
10+
111
2024-07-07 Kevin Ushey <[email protected]>
212

313
* inst/include/Rcpp/internal/SEXP_Iterator.h: Avoid using VECTOR_PTR

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.12.4
4-
Date: 2024-06-22
3+
Version: 1.0.13
4+
Date: 2024-07-11
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <[email protected]>

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
[![Dependencies](https://tinyverse.netlify.app/badge/Rcpp)](https://cran.r-project.org/package=Rcpp)
77
[![Coverage Status](https://codecov.io/gh/RcppCore/Rcpp/graph/badge.svg)](https://app.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-
[![r-universe](https://rcppcore.r-universe.dev/badges/Rcpp)](https://rcppcore.r-universe.dev/rcpp)
9+
[![r-universe](https://rcppcore.r-universe.dev/badges/Rcpp)](https://rcppcore.r-universe.dev/Rcpp)
1010
[![Last Commit](https://img.shields.io/github/last-commit/RcppCore/Rcpp)](https://github.com/RcppCore/Rcpp)
1111
[![Downloads (monthly)](https://cranlogs.r-pkg.org/badges/Rcpp?color=brightgreen)](https://www.r-pkg.org/pkg/Rcpp)
1212
[![Downloads (total)](https://cranlogs.r-pkg.org/badges/grand-total/Rcpp?color=brightgreen)](https://www.r-pkg.org/pkg/Rcpp)

inst/NEWS.Rd

+3-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 release version 1.0.13 (2024-xx-yy)}{
6+
\section{Changes in Rcpp release version 1.0.13 (2024-07-11)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
@@ -17,6 +17,8 @@
1717
\ghpr{1310})
1818
\item Rcpp now emits an R warning on out-of-bounds Vector accesses. This
1919
may become an error in a future Rcpp release. (Kevin in \ghpr{1310})
20+
\item Switch \code{VECTOR_PTR} and \code{STRING_PTR} to new API-compliant
21+
\code{RO} variants (Kevin in \ghpr{1317} fixing \ghit{1316})
2022
}
2123
\item Changes in Rcpp Deployment:
2224
\itemize{

inst/bib/Rcpp.bib

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ @Manual{CRAN:Rcpp
136136
Allaire and Kevin Ushey and Qiang Kou and
137137
Nathan Russel and John Chambers and Douglas Bates},
138138
year = 2024,
139-
note = {R package version 1.0.12},
139+
note = {R package version 1.0.13},
140140
url = CRAN # "package=Rcpp"
141141
}
142142

inst/include/Rcpp/config.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -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,12)
30-
#define RCPP_VERSION_STRING "1.0.12"
29+
#define RCPP_VERSION Rcpp_Version(1,0,13)
30+
#define RCPP_VERSION_STRING "1.0.13"
3131

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

3636
#endif

vignettes/Rcpp-FAQ.pdf

167 KB
Binary file not shown.

vignettes/Rcpp-attributes.pdf

90.3 KB
Binary file not shown.

vignettes/Rcpp-extending.pdf

52.2 KB
Binary file not shown.

vignettes/Rcpp-introduction.pdf

271 KB
Binary file not shown.

vignettes/Rcpp-jss-2011.pdf

158 KB
Binary file not shown.

vignettes/Rcpp-libraries.pdf

66.2 KB
Binary file not shown.

vignettes/Rcpp-modules.pdf

114 KB
Binary file not shown.

vignettes/Rcpp-package.pdf

72.7 KB
Binary file not shown.

vignettes/Rcpp-quickref.pdf

59.2 KB
Binary file not shown.

vignettes/Rcpp-sugar.pdf

83.6 KB
Binary file not shown.

vignettes/rmd/Rcpp.bib

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ @Manual{CRAN:Rcpp
136136
Allaire and Kevin Ushey and Qiang Kou and
137137
Nathan Russel and John Chambers and Douglas Bates},
138138
year = 2024,
139-
note = {R package version 1.0.12},
139+
note = {R package version 1.0.13},
140140
url = CRAN # "package=Rcpp"
141141
}
142142

0 commit comments

Comments
 (0)