From d854744fc08c9ee4e803d0d6dbe4b828db227fcf Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Wed, 5 Feb 2025 06:57:14 -0600 Subject: [PATCH] Roll micro-release and date to 1.0.14.2, update NEWS --- ChangeLog | 6 ++++++ DESCRIPTION | 4 ++-- inst/NEWS.Rd | 5 +++++ inst/include/Rcpp/config.h | 4 ++-- 4 files changed, 15 insertions(+), 4 deletions(-) diff --git a/ChangeLog b/ChangeLog index ebfa8cbfe..fd902f24d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,9 @@ +2025-02-05 Dirk Eddelbuettel + + * DESCRIPTION (Version, Date): Roll micro version and date + + * inst/include/Rcpp/config.h: Idem + 2025-01-31 Lev Kandel * inst/include/Rcpp/internal/wrap.h: Add support for std::string_view diff --git a/DESCRIPTION b/DESCRIPTION index ecaf1e2cc..0ccca1162 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: Rcpp Title: Seamless R and C++ Integration -Version: 1.0.14.1 -Date: 2025-01-26 +Version: 1.0.14.2 +Date: 2025-02-05 Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "edd@debian.org", comment = c(ORCID = "0000-0001-6419-907X")), person("Romain", "Francois", role = "aut", diff --git a/inst/NEWS.Rd b/inst/NEWS.Rd index 54513a9d2..531fd6daf 100644 --- a/inst/NEWS.Rd +++ b/inst/NEWS.Rd @@ -5,6 +5,11 @@ \section{Changes in Rcpp release version 1.0.15 (2025-07-xx)}{ \itemize{ + \item Changes in Rcpp API: + \itemize{ + \item The \code{std::string_view} type is now covered by \code{wrap()} + (Lev Kandel in \ghpr{1356} as discussed in \ghit{1357}) + } \item Changes in Rcpp Documentation: \itemize{ \item Several typos were correct in the NEWS file (Ben Bolker in diff --git a/inst/include/Rcpp/config.h b/inst/include/Rcpp/config.h index 5ae7e02ff..875522996 100644 --- a/inst/include/Rcpp/config.h +++ b/inst/include/Rcpp/config.h @@ -30,7 +30,7 @@ #define RCPP_VERSION_STRING "1.0.14" // 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,1) -#define RCPP_DEV_VERSION_STRING "1.0.14.1" +#define RCPP_DEV_VERSION RcppDevVersion(1,0,14,2) +#define RCPP_DEV_VERSION_STRING "1.0.14.2" #endif