Skip to content

Commit 1761e1d

Browse files
authoredOct 26, 2024··
Update checkout action to v4, roll micro release, re-indent NEWS (#1339)
1 parent 0837acd commit 1761e1d

File tree

5 files changed

+20
-9
lines changed

5 files changed

+20
-9
lines changed
 

‎.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
r: RD
4949

5050
steps:
51-
- uses: actions/checkout@v3
51+
- uses: actions/checkout@v4
5252

5353
#- name: Bootstrap
5454
# run: |

‎ChangeLog

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,19 @@
1+
2024-10-26 Dirk Eddelbuettel <edd@debian.org>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version to 1.0.13.4
4+
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
5+
6+
* .github/workflows/ci.yaml (jobs): Roll checkout action to v4
7+
18
2024-10-26 Gábor Csárdi <csardi.gabor@gmail.com>
29

3-
* inst/include/Rcpp/exceptions_impl.h: check for DragonFlyBSD to fix compilation
10+
* inst/include/Rcpp/exceptions_impl.h: check for DragonFlyBSD to fix
11+
compilation
412

513
2024-10-07 Iñaki Ucar <iucar@fedoraproject.org>
614

7-
* inst/include/Rcpp/platform/compiler.h: Uncomment HAS_VARIADIC_TEMPLATES
8-
macro definition
15+
* inst/include/Rcpp/platform/compiler.h: Uncomment
16+
HAS_VARIADIC_TEMPLATES macro definition
917
* src/api.cpp: Simplify checks for variadic templates
1018
* inst/include/Rcpp/DataFrame.h: Idem
1119
* inst/include/Rcpp/DottedPair.h: Idem
@@ -20,7 +28,8 @@
2028
* inst/include/Rcpp/traits/named_object.h: Idem
2129
* inst/include/Rcpp/vector/Vector.h: Idem
2230
* inst/include/Rcpp/Module.h: Idem + add missing is_void method
23-
* inst/tinytest/test_module.R: Add test for void functions and methods
31+
* inst/tinytest/test_module.R: Add test for void functions and
32+
methods
2433

2534
2024-10-04 Dirk Eddelbuettel <edd@debian.org>
2635

‎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.13.3
4-
Date: 2024-10-04
3+
Version: 1.0.13.4
4+
Date: 2024-10-26
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: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
\ghpr{1315} fixing \ghit{1312})
1414
\item An errorneous cast to \code{int} affecting large return object
1515
has been removed (Dirk in \ghpr{1335} fixing \ghpr{1334})
16+
\item Compilation on DragonFlyBSD is now supported (Gábor Csárdi in
17+
\ghpr{1338})
1618
}
1719
\item Changes in Rcpp Deployment:
1820
\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.13"
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,13,3)
34-
#define RCPP_DEV_VERSION_STRING "1.0.13.3"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,4)
34+
#define RCPP_DEV_VERSION_STRING "1.0.13.4"
3535

3636
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.