Skip to content

Commit

Permalink
Release 1.0.11
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Jul 3, 2023
1 parent 3ff78d9 commit d5964f8
Show file tree
Hide file tree
Showing 4 changed files with 34 additions and 10 deletions.
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 <edd@debian.org>

* 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 <edd@debian.org>

* 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 <edd@debian.org>

* DESCRIPTION (Date, Version): Release 1.0.10

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

2023-01-08 Dirk Eddelbuettel <edd@debian.org>

* 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 <edd@debian.org>
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

0 comments on commit d5964f8

Please sign in to comment.