Skip to content

Commit b2f6ad8

Browse files
committed
Roll micro version and date, update NEWS
1 parent 02d7e11 commit b2f6ad8

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

ChangeLog

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
2026-03-06 Dirk Eddelbuettel <edd@debian.org>
22

3-
* inst/include/Rcpp/Environment.h: For R 4.5.0 or later, use
4-
R_ParentEnv instead of ENCLOS to reach parent environment
5-
6-
* DESCRIPTION (Version, Date): Roll micro version and date
3+
* DESCRIPTION (Version, Date): Roll micro version and date (twice)
74
* inst/include/Rcpp/config.h: Idem
85
* inst/NEWS.Rd: Updated
96

7+
* inst/include/Rcpp/Environment.h: For R 4.5.0 or later, use
8+
R_ParentEnv instead of ENCLOS to reach parent environment
9+
1010
2026-02-27 Iñaki Ucar <iucar@fedoraproject.org>
1111

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

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: Rcpp
22
Title: Seamless R and C++ Integration
3-
Version: 1.1.1.5.1
3+
Version: 1.1.1.6
44
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")),

inst/NEWS.Rd

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,8 @@
1919
been corrected (Iñaki in \ghpr{1458} fixing \ghit{1455})
2020
\item Integer overflow protection has been added for sugar functions
2121
(Iñaki in \ghpr{1457} fixing \ghpr{1454})
22+
\item The parent environment is now accessed via \code{R_ParentEnv}
23+
(Dirk in \ghpr{1460} fixing \ghit{1459})
2224
}
2325
}
2426
}

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.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,5)
34-
#define RCPP_DEV_VERSION_STRING "1.1.1.5"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,1,1,6)
34+
#define RCPP_DEV_VERSION_STRING "1.1.1.6"
3535

3636
#endif

0 commit comments

Comments
 (0)