Skip to content

Commit 2c5240c

Browse files
committed
Roll micro version and date, update NEWS
1 parent 9e2f7cc commit 2c5240c

File tree

4 files changed

+22
-6
lines changed

4 files changed

+22
-6
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2026-01-22 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version and date
4+
* inst/include/Rcpp/config.h: Idem
5+
16
2026-01-21 Dirk Eddelbuettel <edd@debian.org>
27

38
* inst/include/Rcpp/date_datetime/Datetime.h: Fractional seconds type

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.1.1.1
4-
Date: 2026-01-12
3+
Version: 1.1.1.2
4+
Date: 2026-01-22
55
Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "edd@debian.org",
66
comment = c(ORCID = "0000-0001-6419-907X")),
77
person("Romain", "Francois", role = "aut",

inst/NEWS.Rd

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,18 @@
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.1.2 [unreleased] (expected 2026-07-xx)}{
7+
\itemize{
8+
\item Changes in Rcpp API:
9+
\itemize{
10+
\item Use of \code{execinfo.h} is again conditional to avoid build
11+
complexity (Dirk in \ghpr{1445} addressing \ghit{1442})
12+
\item An internal state component for \code{Datetime} is now \code{int}
13+
(Dirk in \ghpr{1448} and \ghpr{1449} fixing \ghpr{1447})
14+
}
15+
}
16+
}
17+
618
\section{Changes in Rcpp release version 1.1.1 (2026-01-08)}{
719
\itemize{
820
\item Changes in Rcpp API:

inst/include/Rcpp/config.h

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11

2-
32
// config.h: Rcpp R/C++ interface class library -- Rcpp configuration
43
//
5-
// Copyright (C) 2010 - 2025 Dirk Eddelbuettel and Romain Francois
4+
// Copyright (C) 2010 - 2026 Dirk Eddelbuettel and Romain Francois
65
//
76
// This file is part of Rcpp.
87
//
@@ -31,7 +30,7 @@
3130
#define RCPP_VERSION_STRING "1.1.1"
3231

3332
// the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it)
34-
#define RCPP_DEV_VERSION RcppDevVersion(1,1,1,1)
35-
#define RCPP_DEV_VERSION_STRING "1.1.1.1"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,1,1,2)
34+
#define RCPP_DEV_VERSION_STRING "1.1.1.2"
3635

3736
#endif

0 commit comments

Comments
 (0)