Skip to content
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
8 changes: 8 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
2025-09-04 Dirk Eddelbuettel <[email protected]>

* DESCRIPTION (Version, Date): Roll micro version and date
* inst/include/Rcpp/config.h: Idem

* inst/include/Rcpp/internal/wrap.h (make_charsexp__impl__cstring):
Avoid a narrowing warning by casting explicitly

2025-08-26 Dirk Eddelbuettel <[email protected]>

* inst/tinytest/test_sugar.R: For r-devel, use apply(x, DIM, mean,
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.1.0.2
Date: 2025-07-20
Version: 1.1.0.3
Date: 2025-09-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
7 changes: 7 additions & 0 deletions inst/NEWS.Rd
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,17 @@

\section{Changes in Rcpp release version 1.1.1 (2026-01-xx)}{
\itemize{
\item Changes in Rcpp API:
\itemize{
\item An unused old R function for a compiler version check has been
removed after checking no known package uses it (Dirk in \ghpr{1395})
\item A narrowing warning is avoided via a cast (Dirk in \ghpr{1398})
}
\item Changes in Rcpp Documentation:
\itemize{
\item Vignettes are now processed via a new "asis" processor adopted
from \pkg{R.rsp} (Dirk in \ghpr{1394} fixing \ghit{1393})
\item R is now cited via its DOI (Dirk)
}
}
}
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 @@ -31,7 +31,7 @@
#define RCPP_VERSION_STRING "1.1.0"

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

#endif
2 changes: 1 addition & 1 deletion inst/include/Rcpp/internal/wrap.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ namespace Rcpp {

#if __cplusplus >= 201703L
inline SEXP make_charsexp__impl__cstring(std::string_view st) {
return Rf_mkCharLen(st.data(), st.size());
return Rf_mkCharLen(st.data(), static_cast<int>(st.size()));
}
#endif

Expand Down