Skip to content

Commit 83e640b

Browse files
committed
Roll micro release and date, update NEWS
1 parent fdd7205 commit 83e640b

File tree

4 files changed

+18
-5
lines changed

4 files changed

+18
-5
lines changed

ChangeLog

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2024-11-25 Dirk Eddelbuettel <[email protected]>
2+
3+
* DESCRIPTION (Version, Date): Roll micro version to 1.0.13.6
4+
* inst/include/Rcpp/config.h (RCPP_DEV_VERSION): Idem
5+
16
2024-11-25 Simon Guest <[email protected]>
27

38
* src/attributes.cpp: fix CPP source having to be writable

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.5
4-
Date: 2024-11-01
3+
Version: 1.0.13.6
4+
Date: 2024-11-25
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: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,11 @@
1818
\item Use read-only \code{VECTOR_PTR} and \code{STRING_PTR} only with
1919
with R 4.5.0 or later (Kevin in \ghpr{1342} fixing \ghit{1341})
2020
}
21+
\item Changes in Rcpp Attributes:
22+
\itemize{
23+
\item The \code{sourceCpp()} function can now handle input files with
24+
read-only modes (Simon Guest in \ghpr{1346} fixing \ghit{1345})
25+
}
2126
\item Changes in Rcpp Deployment:
2227
\itemize{
2328
\item One unit tests for arm64 macOS has been adjusted; a macOS
@@ -31,7 +36,10 @@
3136
\item The Rcpp Modules vignette was extended slightly following
3237
\ghit{1322} (Dirk)
3338
\item Pdf vignettes have been regenerated under Ghostscript 10.03.1 to
34-
avoid a false positive by a Windows virus scanner (Iñaki in \ghpr{1331})
39+
avoid a false positive by a Windows virus scanner (Iñaki in
40+
\ghpr{1331})
41+
\item A (large) number of (old) typos have been corrected in the
42+
vignettes (Marco Colombo in \ghpr{1344})
3543
}
3644
}
3745
}

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,5)
34-
#define RCPP_DEV_VERSION_STRING "1.0.13.5"
33+
#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,6)
34+
#define RCPP_DEV_VERSION_STRING "1.0.13.6"
3535

3636
#endif

0 commit comments

Comments
 (0)