Skip to content

Commit 24878c8

Browse files
authored
Release 1.1.0 (#1392)
* Simplify two doi urls [ci skip] * Release 1.1.0
1 parent 911d6d1 commit 24878c8

15 files changed

+28
-14
lines changed

ChangeLog

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2025-07-01 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Date, Version): Release 1.1.0
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
2025-06-25 Dirk Eddelbuettel <[email protected]>
212

313
* DESCRIPTION (Version, Date): Roll micro version and date

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.14.16
4-
Date: 2025-06-25
3+
Version: 1.1.0
4+
Date: 2025-07-01
55
Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "[email protected]",
66
comment = c(ORCID = "0000-0001-6419-907X")),
77
person("Romain", "Francois", role = "aut",

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@
1313
[![CRAN use](https://jangorecki.gitlab.io/rdeps/Rcpp/CRAN_usage.svg?sanitize=true)](https://cran.r-project.org/package=Rcpp)
1414
[![CRAN indirect](https://jangorecki.gitlab.io/rdeps/Rcpp/indirect_usage.svg?sanitize=true)](https://cran.r-project.org/package=Rcpp)
1515
[![BioConductor use](https://jangorecki.gitlab.io/rdeps/Rcpp/BioC_usage.svg?sanitize=true)](https://cran.r-project.org/package=Rcpp)
16-
[![JSS](https://img.shields.io/badge/JSS-10.18637%2Fjss.v040.i08-brightgreen)](https://dx.doi.org/10.18637/jss.v040.i08)
16+
[![JSS](https://img.shields.io/badge/JSS-10.18637%2Fjss.v040.i08-brightgreen)](https://doi.org/10.18637/jss.v040.i08)
1717
[![Springer useR!](https://img.shields.io/badge/Springer%20useR!-10.1007%2F978--1--4614--6868--4-brightgreen)](https://www.amazon.com/gp/product/1461468671/ref=as_li_tl?ie=UTF8&camp=1789&creative=9325&creativeASIN=1461468671&linkCode=as2&tag=rcpp-20&linkId=3P5LNUWOAQ2YMEJ6)
18-
[![TAS](https://img.shields.io/badge/TAS-10.1080%2F00031305.2017.1375990-brightgreen)](https://dx.doi.org/10.1080/00031305.2017.1375990)
18+
[![TAS](https://img.shields.io/badge/TAS-10.1080%2F00031305.2017.1375990-brightgreen)](https://doi.org/10.1080/00031305.2017.1375990)
1919

2020
### Synopsis
2121

@@ -109,14 +109,14 @@ been factored out of Rcpp into the package RcppClassic, and it is still
109109
available for code relying on the older interface. New development should
110110
always use this Rcpp package instead.
111111

112-
Other usage examples are provided by packages using Rcpp. As of early January
113-
2024, there are 2791 [CRAN](https://cran.r-project.org) packages using Rcpp
114-
(corresponding to 13.8% of all packages, and 59.9% of packages containing
115-
compiled code), a further 254 [BioConductor](https://www.bioconductor.org)
112+
Other usage examples are provided by packages using Rcpp. As of early July
113+
2025, there are 3043 [CRAN](https://cran.r-project.org) packages using Rcpp
114+
(corresponding to 13.6% of all packages, and 61.3% of packages containing
115+
compiled code), a further 271 [BioConductor](https://www.bioconductor.org)
116116
packages in its current release as well as an unknown number of GitHub,
117117
Bitbucket, R-Forge, ... repositories using Rcpp. All these packages provide
118118
usage examples for Rcpp. The package is in widespread use and has been
119-
downloaded over 78.1 million times (per the partial logs from the cloud mirrors
119+
downloaded over 100.6 million times (per the partial logs from the cloud mirrors
120120
of CRAN).
121121

122122
### Installation

inst/NEWS.Rd

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,11 @@
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.15 (2025-07-xx)}{
6+
\section{Changes in Rcpp release version 1.1.0 (2025-07-01)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{
10+
\item C++11 is now the required minimal C++ standard
1011
\item The \code{std::string_view} type is now covered by \code{wrap()}
1112
(Lev Kandel in \ghpr{1356} as discussed in \ghit{1357})
1213
\item A last remaining \code{DATAPTR} use has been converted to
@@ -42,6 +43,8 @@
4243
\ghpr{1354})
4344
\item The Rcpp Libraries vignette mentions \code{PACKAGE_types.h} to
4445
declare types used in \code{RcppExports.cpp} (Dirk in \ghpr{1355})
46+
\item The vignettes bibliography file was updated to current package
47+
versions, and now uses doi references (Dirk in \ghpr{1389})
4548
}
4649
\item Changes in Rcpp Deployment:
4750
\itemize{

inst/include/Rcpp/config.h

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11

2+
23
// config.h: Rcpp R/C++ interface class library -- Rcpp configuration
34
//
45
// Copyright (C) 2010 - 2025 Dirk Eddelbuettel and Romain Francois
@@ -26,11 +27,11 @@
2627
#define RcppDevVersion(maj, min, rev, dev) (((maj)*1000000) + ((min)*10000) + ((rev)*100) + (dev))
2728

2829
// the currently released version
29-
#define RCPP_VERSION Rcpp_Version(1,0,14)
30-
#define RCPP_VERSION_STRING "1.0.14"
30+
#define RCPP_VERSION Rcpp_Version(1,1,0)
31+
#define RCPP_VERSION_STRING "1.1.0"
3132

3233
// 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,14,16)
34-
#define RCPP_DEV_VERSION_STRING "1.0.14.16"
34+
#define RCPP_DEV_VERSION RcppDevVersion(1,1,0,0)
35+
#define RCPP_DEV_VERSION_STRING "1.1.0.0"
3536

3637
#endif

vignettes/pdf/Rcpp-FAQ.pdf

10.9 KB
Binary file not shown.

vignettes/pdf/Rcpp-attributes.pdf

8.93 KB
Binary file not shown.

vignettes/pdf/Rcpp-extending.pdf

7.5 KB
Binary file not shown.

vignettes/pdf/Rcpp-introduction.pdf

11.3 KB
Binary file not shown.

vignettes/pdf/Rcpp-jss-2011.pdf

10.5 KB
Binary file not shown.

0 commit comments

Comments
 (0)