Skip to content

Commit b694118

Browse files
committed
Roll micro version, update ChangeLog and NEWS [ci skip]
1 parent be2517a commit b694118

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-05-28 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version
4+
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
5+
16
2024-05-27 Dirk Eddelbuettel <[email protected]>
27

38
* README.md: Remove link references to StackOverflow

DESCRIPTION

Lines changed: 2 additions & 2 deletions
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.12.2.1
4-
Date: 2024-05-26
3+
Version: 1.0.12.3
4+
Date: 2024-05-28
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 <[email protected]>

inst/NEWS.Rd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
\item Set R_NO_REMAP if not already defined (Dirk in \ghpr{1296})
1111
\item Add variadic templates to be used instead of generated code
1212
(Andrew Johnson in \ghpr{1303}
13+
\item Count variables were switches to \code{size_t} to avoid warnings
14+
about conversion-narrowing (Dirk in \ghpr{1307})
1315
}
1416
\item Changes in Rcpp Deployment:
1517
\itemize{

inst/include/Rcpp/config.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
#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,12,2)
34-
#define RCPP_DEV_VERSION_STRING "1.0.12.2"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,12,3)
34+
#define RCPP_DEV_VERSION_STRING "1.0.12.3"
3535

3636
#endif

0 commit comments

Comments
 (0)