Skip to content

Commit 12c29ee

Browse files
committed
Following rebase roll micro release and date, update ChangeLog
1 parent e1150dc commit 12c29ee

File tree

3 files changed

+20
-4
lines changed

3 files changed

+20
-4
lines changed

ChangeLog

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
2025-03-15 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version and date
4+
* inst/include/Rcpp/config.h: Idem
5+
6+
* inst/include/Rcpp/platform/compiler.h: Simplified and shortened
7+
establishing C++11 as baseline; further PRs to complete this
8+
* inst/include/Rcpp/String.h: Unconditionally use std::hash with C++11
9+
* inst/include/Rcpp/wrap.h: Unconditionally use static_assert
10+
* inst/include/Rcpp/sugar/functions/sapply.h: Use std::result_of
11+
(with C++11 or C++14) or std::invoke_result (C++17 or later)
12+
* inst/include/Rcpp/sugar/functions/table.h: Use std::map
13+
* inst/include/Rcpp/sugar/sets.h: Use std::unordered_{set,map}
14+
* man/evalCpp.Rd: Update example
15+
* src/api.cpp: Simplify rcpp_capabilities assignment
16+
117
2025-03-13 Dirk Eddelbuettel <[email protected]>
218

319
* DESCRIPTION (Version, Date): Roll micro version and date

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.14.6
4-
Date: 2025-03-13
3+
Version: 1.0.14.7
4+
Date: 2025-03-15
55
Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "[email protected]",
66
comment = c(ORCID = "0000-0001-6419-907X")),
77
person("Romain", "Francois", role = "aut",

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.14"
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,14,6)
34-
#define RCPP_DEV_VERSION_STRING "1.0.14.6"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,14,7)
34+
#define RCPP_DEV_VERSION_STRING "1.0.14.7"
3535

3636
#endif

0 commit comments

Comments
 (0)