Skip to content

Commit b5f358a

Browse files
committed
Roll micro version and date, update NEWS for recent changes
1 parent f12f1ed commit b5f358a

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

ChangeLog

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-09-17 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version
4+
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
5+
16
2024-09-12 Iñaki Ucar <[email protected]>
27

38
* vignettes/.gitignore: Refinement to ignore more files under rmd/
@@ -10,7 +15,7 @@
1015

1116
2024-08-28 Dirk Eddelbuettel <[email protected]>
1217

13-
* R/Rcpp.package.skeleton.R: Create DESCRIPTION with Auhors@R fiel
18+
* R/Rcpp.package.skeleton.R: Create DESCRIPTION with Auhors@R file
1419
* inst/tinytest/test_rcpp_package_skeleton.R: Adjust tests
1520

1621
2024-08-20 Dirk Eddelbuettel <[email protected]>

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.1
4-
Date: 2024-07-24
3+
Version: 1.0.13.2
4+
Date: 2024-09-17
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/NEWS.Rd

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,14 @@
1111
\ghpr{1314} fixing \ghit{1313})
1212
\item The \code{SET_TYPEOF} function and macro is no longer used (Kevin in
1313
\ghpr{1315} fixing \ghit{1312})
14+
\item The Rcpp Modules vignette was extended slightly following
15+
\ghit{1322}
16+
\item One unit tests for arm64 macOS has been adjusted; a macOS
17+
continuous integration runner was added
18+
\item Authors@R is now used in DESCRIPTION as mandated by CRAN, the
19+
\code{Rcpp.package.skeleton()} function also creates it
20+
\item The pdf vignettes have been regenerated under Ghostscript 10.03.1
21+
to avoid a false positive by a Windows virus scanner (Iñaki in \ghpr{1331})
1422
}
1523
}
1624
}

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,1)
34-
#define RCPP_DEV_VERSION_STRING "1.0.13.1"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,2)
34+
#define RCPP_DEV_VERSION_STRING "1.0.13.2"
3535

3636
#endif

0 commit comments

Comments
 (0)