Skip to content

Commit 982f784

Browse files
committed
Roll micro release, update NEWS
1 parent 8e94951 commit 982f784

File tree

4 files changed

+21
-8
lines changed

4 files changed

+21
-8
lines changed

ChangeLog

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

38
* inst/include/Rcpp/vector/Vector.h: Remove a cast as R_xlen_t

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.2
4-
Date: 2024-09-17
3+
Version: 1.0.13.3
4+
Date: 2024-10-04
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: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,22 @@
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}
14+
\item An errorneous cast to \code{int} affecting large return object
15+
has been removed (Dirk in \ghpr{1335} fixing \ghpr{1334})
16+
}
17+
\item Changes in Rcpp Deployment:
18+
\itemize{
1619
\item One unit tests for arm64 macOS has been adjusted; a macOS
1720
continuous integration runner was added
1821
\item Authors@R is now used in DESCRIPTION as mandated by CRAN, the
1922
\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})
23+
}
24+
\item Changes in Rcpp Documentation:
25+
\itemize{
26+
\item The Rcpp Modules vignette was extended slightly following
27+
\ghit{1322}
28+
\item Pdf vignettes have been regenerated under Ghostscript 10.03.1 to
29+
avoid a false positive by a Windows virus scanner (Iñaki in \ghpr{1331})
2230
}
2331
}
2432
}

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

3636
#endif

0 commit comments

Comments
 (0)