Skip to content

Commit e65f7b9

Browse files
committed
Roll micro version and date, update NEWS
1 parent ba1e576 commit e65f7b9

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

ChangeLog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2026-03-06 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version and date
4+
* inst/include/Rcpp/config.h: Idem
5+
* inst/NEWS.Rd: Updated
6+
17
2026-02-27 Iñaki Ucar <iucar@fedoraproject.org>
28

39
* inst/include/Rcpp/sugar/functions/max.h: Fix UB for empty integer

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.4
4-
Date: 2026-02-17
3+
Version: 1.1.1.5
4+
Date: 2026-03-06
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: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,11 @@
1414
\item Three new (in R 4.6.0) attribute accessors are used conditionally
1515
(Dirk in \ghpr{1450} closing \ghit{1432})
1616
\item An UBSAN error in the Sugar-based NA comparison has been
17-
corrected Iñaki in \ghpr{1453} fixing \ghit{1452}
17+
corrected (Iñaki in \ghpr{1453} fixing \ghit{1452})
18+
\item Treatment of Inf outside of integer range in Sugar function has
19+
been corrected (Iñaki in \ghpr{1458} fixing \ghit{1455})
20+
\item Integer overflow protection has been added for sugar functions
21+
(Iñaki in \ghpr{1457} fixing \ghpr{1454})
1822
}
1923
}
2024
}

inst/include/Rcpp/config.h

Lines changed: 3 additions & 3 deletions
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 - 2026 Dirk Eddelbuettel and Romain Francois
4+
// Copyright (C) 2010-2026 Dirk Eddelbuettel and Romain François
55
//
66
// This file is part of Rcpp.
77
//
@@ -30,7 +30,7 @@
3030
#define RCPP_VERSION_STRING "1.1.1"
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,1,1,4)
34-
#define RCPP_DEV_VERSION_STRING "1.1.1.4"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,1,1,5)
34+
#define RCPP_DEV_VERSION_STRING "1.1.1.5"
3535

3636
#endif

0 commit comments

Comments
 (0)