From 7ec20b7321f8c8cf3ecc02d4eea16bc98d33833a Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Sun, 28 Dec 2025 06:35:01 -0600 Subject: [PATCH 1/2] Replace drat mention in README with r-universe --- ChangeLog | 4 ++++ README.md | 18 +++++++++--------- 2 files changed, 13 insertions(+), 9 deletions(-) diff --git a/ChangeLog b/ChangeLog index 15d8a5654..5e13f1cbf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2025-12-28 Dirk Eddelbuettel + + * README.md: Replace installation from drat section with r-universe + 2025-12-22 Dirk Eddelbuettel * DESCRIPTION (Version, Date): Roll micro version and date diff --git a/README.md b/README.md index 0a0f4ffbc..e64a6fa1a 100644 --- a/README.md +++ b/README.md @@ -134,20 +134,20 @@ install.packages("Rcpp") #### Release Candidates -For the last several releases, we also made interim _candidate_ releases available -on the [Rcpp Drat Repo](https://RcppCore.github.io/drat/). Versions from a -[drat](https://github.com/eddelbuettel/drat) repo can be installed either by -just temporarily setting the [drat](https://github.com/eddelbuettel/drat) repo as in +We generally make interim _candidate_ releases available via the [r-universe +page](https://rcppcore.r-universe.dev/Rcpp). It provides a standard R repository which +correspond to the current main branch in the source repository. Both binary and source +versions can be installed via ```R -install.packages("Rcpp", repos="https://RcppCore.github.io/drat") +install.packages("Rcpp", repos = c("https://rcppcore.r-universe.dev", + "https://cloud.r-project.org")) ``` -or by setting a [drat](https://github.com/eddelbuettel/drat) repo more permanently -(as described in the documentation of the [drat](https://github.com/eddelbuettel/drat) -package). +where other repos can be set as needed. -Testing the release candidates prior to actual release help. Please run this if you can. +Testing the release candidates prior to the actual release helps. Please run +this if you can. #### Source From dcba0345ca6df3f074c2574540d590c973fe9ce5 Mon Sep 17 00:00:00 2001 From: Dirk Eddelbuettel Date: Sun, 28 Dec 2025 06:47:23 -0600 Subject: [PATCH 2/2] One char fix [ci skip] --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e64a6fa1a..b7bd39c3a 100644 --- a/README.md +++ b/README.md @@ -136,7 +136,7 @@ install.packages("Rcpp") We generally make interim _candidate_ releases available via the [r-universe page](https://rcppcore.r-universe.dev/Rcpp). It provides a standard R repository which -correspond to the current main branch in the source repository. Both binary and source +corresponds to the current main branch in the source repository. Both binary and source versions can be installed via ```R