From c5b15728a4612fd9b2cba7fb31154fbfcaea18db Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Sun, 22 Jan 2023 10:29:18 -0600 Subject: [PATCH] Release 1.0.10 --- DESCRIPTION | 4 ++-- inst/NEWS.Rd | 4 +++- inst/include/Rcpp/config.h | 10 +++++----- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 4db57d26a..da915d0e8 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: Rcpp Title: Seamless R and C++ Integration -Version: 1.0.9.5 -Date: 2022-10-27 +Version: 1.0.10 +Date: 2023-01-12 Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou, Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers Maintainer: Dirk Eddelbuettel diff --git a/inst/NEWS.Rd b/inst/NEWS.Rd index fbbc4628c..22f0b7a48 100644 --- a/inst/NEWS.Rd +++ b/inst/NEWS.Rd @@ -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 release version 1.0.9.6 (2022-10-27)}{ +\section{Changes in Rcpp release version 1.0.10 (2023-01-12)}{ \itemize{ \item Changes in Rcpp API: \itemize{ @@ -19,6 +19,8 @@ or \code{push_front} (Dirk in \ghpr{1233} fixing \ghit{1232}). \item One remaining \code{sprintf} has been replaced by \code{snprintf} (Dirk and Kevin in \ghpr{1236} and \ghpr{1237}). + \item Several conversion warnings found by \code{clang++} have been + addressed (Dirk in \ghpr{1240} and \ghpr{1241}). } \item Changes in Rcpp Attributes: \itemize{ diff --git a/inst/include/Rcpp/config.h b/inst/include/Rcpp/config.h index f887aae86..10db10ebd 100644 --- a/inst/include/Rcpp/config.h +++ b/inst/include/Rcpp/config.h @@ -1,7 +1,7 @@ // config.h: Rcpp R/C++ interface class library -- Rcpp configuration // -// Copyright (C) 2010 - 2022 Dirk Eddelbuettel and Romain Francois +// Copyright (C) 2010 - 2023 Dirk Eddelbuettel and Romain Francois // // This file is part of Rcpp. // @@ -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,9) -#define RCPP_VERSION_STRING "1.0.9" +#define RCPP_VERSION Rcpp_Version(1,0,10) +#define RCPP_VERSION_STRING "1.0.10" // the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it) -#define RCPP_DEV_VERSION RcppDevVersion(1,0,9,5) -#define RCPP_DEV_VERSION_STRING "1.0.9.5" +#define RCPP_DEV_VERSION RcppDevVersion(1,0,10,0) +#define RCPP_DEV_VERSION_STRING "1.0.10.0" #endif