Skip to content

Commit d08b46f

Browse files
committed
Release 1.0.12
1 parent 8ebc875 commit d08b46f

File tree

6 files changed

+22
-12
lines changed

6 files changed

+22
-12
lines changed

ChangeLog

+10
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,13 @@
1+
2024-01-08 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* DESCRIPTION (Date, Version): Release 1.0.12
4+
5+
* inst/include/Rcpp/config.h: Idem
6+
* inst/NEWS.Rd: Idem
7+
* vignettes/rmd/Rcpp.bib: Idem
8+
* inst/bib/Rcpp.bib: Idem
9+
* vignettes/pdf/*: Rebuilt
10+
111
2024-01-01 Dirk Eddelbuettel <edd@debian.org>
212

313
* vignettes/rmd/Rcpp.bib: Updated to current versions of cited packages

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 1.0.11.6
4-
Date: 2023-11-28
3+
Version: 1.0.12
4+
Date: 2024-01-08
55
Author: Dirk Eddelbuettel, Romain Francois, JJ Allaire, Kevin Ushey, Qiang Kou,
66
Nathan Russell, Inaki Ucar, Douglas Bates and John Chambers
77
Maintainer: Dirk Eddelbuettel <edd@debian.org>

inst/NEWS.Rd

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
\newcommand{\ghpr}{\href{https://github.com/RcppCore/Rcpp/pull/#1}{##1}}
44
\newcommand{\ghit}{\href{https://github.com/RcppCore/Rcpp/issues/#1}{##1}}
55

6-
\section{Changes in Rcpp release version 1.0.12 (2024-01-xx)}{
6+
\section{Changes in Rcpp release version 1.0.12 (2024-01-08)}{
77
\itemize{
88
\item Changes in Rcpp API:
99
\itemize{

inst/bib/Rcpp.bib

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ @Manual{CRAN:Rcpp
135135
author = {Dirk Eddelbuettel and Romain Fran\c{c}ois and JJ
136136
Allaire and Kevin Ushey and Qiang Kou and
137137
Nathan Russel and John Chambers and Douglas Bates},
138-
year = 2023,
139-
note = {R package version 1.0.11},
138+
year = 2024,
139+
note = {R package version 1.0.12},
140140
url = CRAN # "package=Rcpp"
141141
}
142142

inst/include/Rcpp/config.h

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
// config.h: Rcpp R/C++ interface class library -- Rcpp configuration
33
//
4-
// Copyright (C) 2010 - 2023 Dirk Eddelbuettel and Romain Francois
4+
// Copyright (C) 2010 - 2024 Dirk Eddelbuettel and Romain Francois
55
//
66
// This file is part of Rcpp.
77
//
@@ -26,11 +26,11 @@
2626
#define RcppDevVersion(maj, min, rev, dev) (((maj)*1000000) + ((min)*10000) + ((rev)*100) + (dev))
2727

2828
// the currently released version
29-
#define RCPP_VERSION Rcpp_Version(1,0,11)
30-
#define RCPP_VERSION_STRING "1.0.11"
29+
#define RCPP_VERSION Rcpp_Version(1,0,12)
30+
#define RCPP_VERSION_STRING "1.0.12"
3131

3232
// the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it)
33-
#define RCPP_DEV_VERSION RcppDevVersion(1,0,11,6)
34-
#define RCPP_DEV_VERSION_STRING "1.0.11.6"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,12,0)
34+
#define RCPP_DEV_VERSION_STRING "1.0.12.0"
3535

3636
#endif

vignettes/rmd/Rcpp.bib

+2-2
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ @Manual{CRAN:Rcpp
135135
author = {Dirk Eddelbuettel and Romain Fran\c{c}ois and JJ
136136
Allaire and Kevin Ushey and Qiang Kou and
137137
Nathan Russel and John Chambers and Douglas Bates},
138-
year = 2023,
139-
note = {R package version 1.0.11},
138+
year = 2024,
139+
note = {R package version 1.0.12},
140140
url = CRAN # "package=Rcpp"
141141
}
142142

0 commit comments

Comments
 (0)