Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update checkout action to v4, roll micro release, re-indent NEWS #1339

Merged
merged 1 commit into from
Oct 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
r: RD

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

#- name: Bootstrap
# run: |
Expand Down
17 changes: 13 additions & 4 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
2024-10-26 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Version, Date): Roll micro version to 1.0.13.4
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem

* .github/workflows/ci.yaml (jobs): Roll checkout action to v4

2024-10-26 Gábor Csárdi <[email protected]>

* inst/include/Rcpp/exceptions_impl.h: check for DragonFlyBSD to fix compilation
* inst/include/Rcpp/exceptions_impl.h: check for DragonFlyBSD to fix
compilation

2024-10-07 Iñaki Ucar <[email protected]>

* inst/include/Rcpp/platform/compiler.h: Uncomment HAS_VARIADIC_TEMPLATES
macro definition
* inst/include/Rcpp/platform/compiler.h: Uncomment
HAS_VARIADIC_TEMPLATES macro definition
* src/api.cpp: Simplify checks for variadic templates
* inst/include/Rcpp/DataFrame.h: Idem
* inst/include/Rcpp/DottedPair.h: Idem
Expand All @@ -20,7 +28,8 @@
* inst/include/Rcpp/traits/named_object.h: Idem
* inst/include/Rcpp/vector/Vector.h: Idem
* inst/include/Rcpp/Module.h: Idem + add missing is_void method
* inst/tinytest/test_module.R: Add test for void functions and methods
* inst/tinytest/test_module.R: Add test for void functions and
methods

2024-10-04 Dirk Eddelbuettel <[email protected]>

Expand Down
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: Rcpp
Title: Seamless R and C++ Integration
Version: 1.0.13.3
Date: 2024-10-04
Version: 1.0.13.4
Date: 2024-10-26
Authors@R: c(person("Dirk", "Eddelbuettel", role = c("aut", "cre"), email = "[email protected]",
comment = c(ORCID = "0000-0001-6419-907X")),
person("Romain", "Francois", role = "aut",
Expand Down
2 changes: 2 additions & 0 deletions inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
\ghpr{1315} fixing \ghit{1312})
\item An errorneous cast to \code{int} affecting large return object
has been removed (Dirk in \ghpr{1335} fixing \ghpr{1334})
\item Compilation on DragonFlyBSD is now supported (Gábor Csárdi in
\ghpr{1338})
}
\item Changes in Rcpp Deployment:
\itemize{
Expand Down
4 changes: 2 additions & 2 deletions inst/include/Rcpp/config.h
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
#define RCPP_VERSION_STRING "1.0.13"

// the current source snapshot (using four components, if a fifth is used in DESCRIPTION we ignore it)
#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,3)
#define RCPP_DEV_VERSION_STRING "1.0.13.3"
#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,4)
#define RCPP_DEV_VERSION_STRING "1.0.13.4"

#endif