Skip to content

Commit

Permalink
Roll micro release, update NEWS
Browse files Browse the repository at this point in the history
  • Loading branch information
eddelbuettel committed Oct 4, 2024
1 parent 8e94951 commit 982f784
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 8 deletions.
5 changes: 5 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2024-10-04 Dirk Eddelbuettel <[email protected]>

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

2024-09-29 Dirk Eddelbuettel <[email protected]>

* inst/include/Rcpp/vector/Vector.h: Remove a cast as R_xlen_t
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.2
Date: 2024-09-17
Version: 1.0.13.3
Date: 2024-10-04
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
16 changes: 12 additions & 4 deletions inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,22 @@
\ghpr{1314} fixing \ghit{1313})
\item The \code{SET_TYPEOF} function and macro is no longer used (Kevin in
\ghpr{1315} fixing \ghit{1312})
\item The Rcpp Modules vignette was extended slightly following
\ghit{1322}
\item An errorneous cast to \code{int} affecting large return object
has been removed (Dirk in \ghpr{1335} fixing \ghpr{1334})
}
\item Changes in Rcpp Deployment:
\itemize{
\item One unit tests for arm64 macOS has been adjusted; a macOS
continuous integration runner was added
\item Authors@R is now used in DESCRIPTION as mandated by CRAN, the
\code{Rcpp.package.skeleton()} function also creates it
\item The pdf vignettes have been regenerated under Ghostscript 10.03.1
to avoid a false positive by a Windows virus scanner (Iñaki in \ghpr{1331})
}
\item Changes in Rcpp Documentation:
\itemize{
\item The Rcpp Modules vignette was extended slightly following
\ghit{1322}
\item Pdf vignettes have been regenerated under Ghostscript 10.03.1 to
avoid a false positive by a Windows virus scanner (Iñaki in \ghpr{1331})
}
}
}
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,2)
#define RCPP_DEV_VERSION_STRING "1.0.13.2"
#define RCPP_DEV_VERSION RcppDevVersion(1,0,13,3)
#define RCPP_DEV_VERSION_STRING "1.0.13.3"

#endif

0 comments on commit 982f784

Please sign in to comment.