Skip to content

Release 1.1.0 #1392

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jul 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2025-07-01 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Date, Version): Release 1.1.0

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

2025-06-25 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Version, Date): Roll micro version and date
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.14.16
Date: 2025-06-25
Version: 1.1.0
Date: 2025-07-01
Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "[email protected]",
comment = c(ORCID = "0000-0001-6419-907X")),
person("Romain", "Francois", role = "aut",
Expand Down
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
[![CRAN use](https://jangorecki.gitlab.io/rdeps/Rcpp/CRAN_usage.svg?sanitize=true)](https://cran.r-project.org/package=Rcpp)
[![CRAN indirect](https://jangorecki.gitlab.io/rdeps/Rcpp/indirect_usage.svg?sanitize=true)](https://cran.r-project.org/package=Rcpp)
[![BioConductor use](https://jangorecki.gitlab.io/rdeps/Rcpp/BioC_usage.svg?sanitize=true)](https://cran.r-project.org/package=Rcpp)
[![JSS](https://img.shields.io/badge/JSS-10.18637%2Fjss.v040.i08-brightgreen)](https://dx.doi.org/10.18637/jss.v040.i08)
[![JSS](https://img.shields.io/badge/JSS-10.18637%2Fjss.v040.i08-brightgreen)](https://doi.org/10.18637/jss.v040.i08)
[![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)
[![TAS](https://img.shields.io/badge/TAS-10.1080%2F00031305.2017.1375990-brightgreen)](https://dx.doi.org/10.1080/00031305.2017.1375990)
[![TAS](https://img.shields.io/badge/TAS-10.1080%2F00031305.2017.1375990-brightgreen)](https://doi.org/10.1080/00031305.2017.1375990)

### Synopsis

Expand Down Expand Up @@ -109,14 +109,14 @@ 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 early January
2024, there are 2791 [CRAN](https://cran.r-project.org) packages using Rcpp
(corresponding to 13.8% of all packages, and 59.9% of packages containing
compiled code), a further 254 [BioConductor](https://www.bioconductor.org)
Other usage examples are provided by packages using Rcpp. As of early July
2025, there are 3043 [CRAN](https://cran.r-project.org) packages using Rcpp
(corresponding to 13.6% of all packages, and 61.3% of packages containing
compiled code), a further 271 [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. The package is in widespread use and has been
downloaded over 78.1 million times (per the partial logs from the cloud mirrors
downloaded over 100.6 million times (per the partial logs from the cloud mirrors
of CRAN).

### Installation
Expand Down
5 changes: 4 additions & 1 deletion inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,11 @@
\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.15 (2025-07-xx)}{
\section{Changes in Rcpp release version 1.1.0 (2025-07-01)}{
\itemize{
\item Changes in Rcpp API:
\itemize{
\item C++11 is now the required minimal C++ standard
\item The \code{std::string_view} type is now covered by \code{wrap()}
(Lev Kandel in \ghpr{1356} as discussed in \ghit{1357})
\item A last remaining \code{DATAPTR} use has been converted to
Expand Down Expand Up @@ -42,6 +43,8 @@
\ghpr{1354})
\item The Rcpp Libraries vignette mentions \code{PACKAGE_types.h} to
declare types used in \code{RcppExports.cpp} (Dirk in \ghpr{1355})
\item The vignettes bibliography file was updated to current package
versions, and now uses doi references (Dirk in \ghpr{1389})
}
\item Changes in Rcpp Deployment:
\itemize{
Expand Down
9 changes: 5 additions & 4 deletions inst/include/Rcpp/config.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@


// config.h: Rcpp R/C++ interface class library -- Rcpp configuration
//
// Copyright (C) 2010 - 2025 Dirk Eddelbuettel and Romain Francois
Expand Down Expand Up @@ -26,11 +27,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,14)
#define RCPP_VERSION_STRING "1.0.14"
#define RCPP_VERSION Rcpp_Version(1,1,0)
#define RCPP_VERSION_STRING "1.1.0"

// the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it)
#define RCPP_DEV_VERSION RcppDevVersion(1,0,14,16)
#define RCPP_DEV_VERSION_STRING "1.0.14.16"
#define RCPP_DEV_VERSION RcppDevVersion(1,1,0,0)
#define RCPP_DEV_VERSION_STRING "1.1.0.0"

#endif
Binary file modified vignettes/pdf/Rcpp-FAQ.pdf
Binary file not shown.
Binary file modified vignettes/pdf/Rcpp-attributes.pdf
Binary file not shown.
Binary file modified vignettes/pdf/Rcpp-extending.pdf
Binary file not shown.
Binary file modified vignettes/pdf/Rcpp-introduction.pdf
Binary file not shown.
Binary file modified vignettes/pdf/Rcpp-jss-2011.pdf
Binary file not shown.
Binary file modified vignettes/pdf/Rcpp-libraries.pdf
Binary file not shown.
Binary file modified vignettes/pdf/Rcpp-modules.pdf
Binary file not shown.
Binary file modified vignettes/pdf/Rcpp-package.pdf
Binary file not shown.
Binary file modified vignettes/pdf/Rcpp-quickref.pdf
Binary file not shown.
Binary file modified vignettes/pdf/Rcpp-sugar.pdf
Binary file not shown.