Skip to content

Commit

Permalink
Release 1.0.10
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Jan 22, 2023
1 parent b57c7f7 commit c5b1572
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
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.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 <[email protected]>
Expand Down
4 changes: 3 additions & 1 deletion 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 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{
Expand All @@ -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{
Expand Down
10 changes: 5 additions & 5 deletions inst/include/Rcpp/config.h
Original file line number Diff line number Diff line change
@@ -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.
//
Expand All @@ -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

0 comments on commit c5b1572

Please sign in to comment.