Skip to content

Release 1.0.11 #1270

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 1 commit into from
Jul 6, 2023
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
17 changes: 17 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
2023-07-03 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Date, Version): Release 1.0.11

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

2023-07-02 Dirk Eddelbuettel <[email protected]>

* README.md: Update usage numbers in Examples section
Expand Down Expand Up @@ -95,6 +105,13 @@

* R/RcppLdpath.R: CxxFlags() now quotes only non-standard paths on linux

2023-01-22 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Date, Version): Release 1.0.10

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

2023-01-08 Dirk Eddelbuettel <[email protected]>

* inst/include/Rcpp/String.h: Address clang++-14 conversion warning
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.10.5
Date: 2023-06-12
Version: 1.0.11
Date: 2023-07-03
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers
Maintainer: Dirk Eddelbuettel <[email protected]>
Expand Down
15 changes: 11 additions & 4 deletions 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 rc version 1.0.10.3 for 1.0.11 (2023-07-xx)}{
\section{Changes in Rcpp rc version 1.0.11 (2023-07-03)}{
\itemize{
\item Changes in Rcpp API:
\itemize{
Expand All @@ -12,19 +12,26 @@
\item Two unit tests no longer accidentally bark on stdout (Dirk and
Iñaki in \ghpr{1245}).
\item Compilation under C++ using \pkg{clang++} and its standard
library is enabled (Dirk in \ghpr{1248}) closing \ghit{1244}).
library is enabled (Dirk in \ghpr{1248} closing \ghit{1244}).
\item Use backticks in a generated \code{.Call()} statement in
`RcppExports.R` (Dirk \ghpr{1256} closing \ghit{1255}).
\item Switch to \code{system2()} to capture standard error messages in
error cases (Iñaki in \ghpr{1259} and \ghpr{1261} fixing \ghit{1257}).
}
\item Changes in Rcpp Documentation:
\itemize{
\item The CITATION file format has been updated (Dirk in \ghpr{1250}
fixing \ghit{1249}.
fixing \ghit{1249}).
}
\item Changes in Rcpp Deployment:
\itemize{
\item A test for \code{qnorm} now uses the more accurate value from R
4.3.0 (Dirk in \ghpr{1252} fixing \ghit{1251}).
4.3.0 (Dirk in \ghpr{1252} and \ghpr{1260} fixing \ghit{1251}).
\item Skip tests with path issues on Windows (Iñaki in \ghpr{1258}).
\item Container deployment in continuous integrations was
improved. (Iñaki and Dirk in \ghpr{1264}, Dirk in \ghpr{1269}).
\item Several files receives minor edits to please \code{R CMD check}
from r-devel (Dirk in \ghpr{1267}).
}
}
}
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,10)
#define RCPP_VERSION_STRING "1.0.10"
#define RCPP_VERSION Rcpp_Version(1,0,11)
#define RCPP_VERSION_STRING "1.0.11"

// the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it)
#define RCPP_DEV_VERSION RcppDevVersion(1,0,10,5)
#define RCPP_DEV_VERSION_STRING "1.0.10.5"
#define RCPP_DEV_VERSION RcppDevVersion(1,0,11,0)
#define RCPP_DEV_VERSION_STRING "1.0.11.0"

#endif