From ef1062357440a0bfcec9a3f1e7c5977729ffe83a Mon Sep 17 00:00:00 2001 From: shikokuchuo <53399081+shikokuchuo@users.noreply.github.com> Date: Mon, 8 Apr 2024 08:49:15 +0100 Subject: [PATCH] go dev --- DESCRIPTION | 2 +- NEWS.md | 2 ++ README.Rmd | 11 ++++------- README.md | 9 +++------ 4 files changed, 10 insertions(+), 14 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 87a07fa2b..fc3f85077 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: nanonext Type: Package Title: NNG (Nanomsg Next Gen) Lightweight Messaging Library -Version: 0.13.6 +Version: 0.13.6.9000 Description: R binding for NNG (Nanomsg Next Gen), a successor to ZeroMQ. NNG is a socket library implementing 'Scalability Protocols', a reliable, high-performance standard for common communications patterns including diff --git a/NEWS.md b/NEWS.md index afd0f6d45..032f74ee3 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,5 @@ +# nanonext 0.13.6 (development) + # nanonext 0.13.6 #### Updates diff --git a/README.Rmd b/README.Rmd index aee21e91b..ac7baae1a 100644 --- a/README.Rmd +++ b/README.Rmd @@ -61,15 +61,12 @@ Web utilities: ### Installation -Install the fast channel release from R-multiverse: - -```{r releases, eval=FALSE} -install.packages("nanonext", repos = "https://r-multiverse.r-universe.dev") -``` - -Or the slow channel release from CRAN: +Install the latest release: ```{r cran, eval=FALSE} +# Either [1] fast channel from R-multiverse: +install.packages("nanonext", repos = "https://r-multiverse.r-universe.dev") +# Or [2] slow channel from CRAN: install.packages("nanonext") ``` diff --git a/README.md b/README.md index 5fb369e61..819b724e9 100644 --- a/README.md +++ b/README.md @@ -76,15 +76,12 @@ Web utilities: ### Installation -Install the fast channel release from R-multiverse: +Install the latest release: ``` r +# Either [1] fast channel from R-multiverse: install.packages("nanonext", repos = "https://r-multiverse.r-universe.dev") -``` - -Or the slow channel release from CRAN: - -``` r +# Or [2] slow channel from CRAN: install.packages("nanonext") ```