From 6cc5e0dd4ea8f53fd906930f1a0f4149941e9483 Mon Sep 17 00:00:00 2001 From: Mauro Lepore Date: Wed, 30 Oct 2024 07:30:40 +0000 Subject: [PATCH 1/9] Add NEWS.md --- NEWS.md | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 NEWS.md diff --git a/NEWS.md b/NEWS.md new file mode 100644 index 0000000..41102cc --- /dev/null +++ b/NEWS.md @@ -0,0 +1,3 @@ +# ixplorer 0.3.4 + +* Added a `NEWS.md` file to track changes to the package. From b4da6db910e6cc2c27954f223009f077c2f74353 Mon Sep 17 00:00:00 2001 From: Mauro Lepore Date: Wed, 30 Oct 2024 07:31:15 +0000 Subject: [PATCH 2/9] Increment version number to 0.3.4.9000 --- DESCRIPTION | 2 +- NEWS.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 9ddaa3a..2407034 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: ixplorer Title: Easy DataOps for R Users -Version: 0.3.4 +Version: 0.3.4.9000 Authors@R: c(person(given = "ixpantia, SRL", role = "cph", diff --git a/NEWS.md b/NEWS.md index 41102cc..92d8e86 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,5 @@ +# ixplorer (development version) + # ixplorer 0.3.4 * Added a `NEWS.md` file to track changes to the package. From ab18846f24e0f6ed8bfab8206d405d8778eb34fb Mon Sep 17 00:00:00 2001 From: Mauro Lepore Date: Wed, 30 Oct 2024 07:34:57 +0000 Subject: [PATCH 3/9] Pulir NEWS.md --- NEWS.md | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/NEWS.md b/NEWS.md index 92d8e86..18267c1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,3 @@ # ixplorer (development version) -# ixplorer 0.3.4 - -* Added a `NEWS.md` file to track changes to the package. +* Nuevo `NEWS.md` para registrar cambios visibles a los usuarios (https://style.tidyverse.org/news.html). From 0d8dd7b8138cd06fcf1bc2884bc9e6343f68be39 Mon Sep 17 00:00:00 2001 From: Mauro Lepore Date: Wed, 30 Oct 2024 08:03:17 +0000 Subject: [PATCH 4/9] Actualizer roxygen2 --- DESCRIPTION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 2407034..bd8f3a3 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -60,7 +60,7 @@ VignetteBuilder: knitr Encoding: UTF-8 Roxygen: list(markdown = TRUE) -RoxygenNote: 7.2.3 +RoxygenNote: 7.3.2 URL: https://github.com/ixpantia/ixplorer BugReports: https://github.com/ixpantia/ixplorer/issues Config/testthat/edition: 3 From 6a55fe16972a1057b6c6b8a6035929d0dcd17b4c Mon Sep 17 00:00:00 2001 From: Mauro Lepore Date: Thu, 31 Oct 2024 18:58:38 +0000 Subject: [PATCH 5/9] Address R CMD check NOTE --- R/create_users.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/create_users.R b/R/create_users.R index 5b3b439..da37d50 100644 --- a/R/create_users.R +++ b/R/create_users.R @@ -209,7 +209,7 @@ create_users <- function(base_url, api_key, owner, repo, user_data_df, }) df <- dplyr::bind_rows(results) - df <- dplyr::select(df, email, login, username, password) + df <- dplyr::select(df, "email", "login", "username", "password") return(df) } From 773b75aa6d3605d9462b0ba332102b25f53e05bf Mon Sep 17 00:00:00 2001 From: Mauro Lepore Date: Thu, 31 Oct 2024 19:01:55 +0000 Subject: [PATCH 6/9] Avoid R CMD check NOTE about no new NEWS entries --- NEWS.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/NEWS.md b/NEWS.md index 18267c1..2728a44 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ # ixplorer (development version) * Nuevo `NEWS.md` para registrar cambios visibles a los usuarios (https://style.tidyverse.org/news.html). + +# ixplorer v0.2.2 (2022-07-02) + +* CRAN release. From bb3fbb50bac09321e33aead02258aa47a589f1e8 Mon Sep 17 00:00:00 2001 From: Mauro Lepore Date: Thu, 31 Oct 2024 20:08:43 +0000 Subject: [PATCH 7/9] Check on GH Actions --- .Rbuildignore | 1 + .github/workflows/R-CMD-check.yaml | 52 ++++++++++++++++++++++++++++++ README.Rmd | 1 + README.md | 1 + 4 files changed, 55 insertions(+) create mode 100644 .github/workflows/R-CMD-check.yaml diff --git a/.Rbuildignore b/.Rbuildignore index 4810e4c..80d2b86 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -7,3 +7,4 @@ ^docs$ ^pkgdown$ ^LICENSE\.md$ +^\.github$ diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml new file mode 100644 index 0000000..d46a617 --- /dev/null +++ b/.github/workflows/R-CMD-check.yaml @@ -0,0 +1,52 @@ +# Workflow derived from https://github.com/r-lib/actions/tree/v2/examples +# Need help debugging build failures? Start at https://github.com/r-lib/actions#where-to-find-help +on: + push: + branches: [main, master] + pull_request: + branches: [main, master] + +name: R-CMD-check.yaml + +permissions: read-all + +jobs: + R-CMD-check: + runs-on: ${{ matrix.config.os }} + + name: ${{ matrix.config.os }} (${{ matrix.config.r }}) + + strategy: + fail-fast: false + matrix: + config: + - {os: macos-latest, r: 'release'} + - {os: windows-latest, r: 'release'} + - {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'} + - {os: ubuntu-latest, r: 'release'} + - {os: ubuntu-latest, r: 'oldrel-1'} + + env: + GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} + R_KEEP_PKG_SOURCE: yes + + steps: + - uses: actions/checkout@v4 + + - uses: r-lib/actions/setup-pandoc@v2 + + - uses: r-lib/actions/setup-r@v2 + with: + r-version: ${{ matrix.config.r }} + http-user-agent: ${{ matrix.config.http-user-agent }} + use-public-rspm: true + + - uses: r-lib/actions/setup-r-dependencies@v2 + with: + extra-packages: any::rcmdcheck + needs: check + + - uses: r-lib/actions/check-r-package@v2 + with: + upload-snapshots: true + build_args: 'c("--no-manual","--compact-vignettes=gs+qpdf")' diff --git a/README.Rmd b/README.Rmd index d0c7093..c08b536 100644 --- a/README.Rmd +++ b/README.Rmd @@ -18,6 +18,7 @@ knitr::opts_chunk$set( [![CRAN status](https://www.r-pkg.org/badges/version/ixplorer)](https://cran.r-project.org/package=ixplorer) +[![R-CMD-check](https://github.com/mauro-ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/mauro-ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml) ### Español diff --git a/README.md b/README.md index 5f3216e..1660f60 100644 --- a/README.md +++ b/README.md @@ -7,6 +7,7 @@ [![CRAN status](https://www.r-pkg.org/badges/version/ixplorer)](https://cran.r-project.org/package=ixplorer) +[![R-CMD-check](https://github.com/mauro-ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/mauro-ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml) ### Español From 313073d0410c4d000026074d68012da64029a1a3 Mon Sep 17 00:00:00 2001 From: Mauro Lepore Date: Thu, 31 Oct 2024 20:51:53 +0000 Subject: [PATCH 8/9] Use cran-comments.md --- .Rbuildignore | 1 + cran-comments.md | 7 +++++++ 2 files changed, 8 insertions(+) create mode 100644 cran-comments.md diff --git a/.Rbuildignore b/.Rbuildignore index 80d2b86..8d5e9fb 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -8,3 +8,4 @@ ^pkgdown$ ^LICENSE\.md$ ^\.github$ +^cran-comments\.md$ diff --git a/cran-comments.md b/cran-comments.md new file mode 100644 index 0000000..d9a4e09 --- /dev/null +++ b/cran-comments.md @@ -0,0 +1,7 @@ +## R CMD check results + +0 errors | 0 warnings | 0 note + +## revdepcheck results + +There are currently no downstream dependencies for this package. From 6bd28596ef428a3ffa72cf30c69fa37aec731548 Mon Sep 17 00:00:00 2001 From: Mauro Lepore Date: Thu, 31 Oct 2024 20:57:19 +0000 Subject: [PATCH 9/9] Prune README --- README.Rmd | 2 +- README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.Rmd b/README.Rmd index c08b536..635f1c6 100644 --- a/README.Rmd +++ b/README.Rmd @@ -18,7 +18,7 @@ knitr::opts_chunk$set( [![CRAN status](https://www.r-pkg.org/badges/version/ixplorer)](https://cran.r-project.org/package=ixplorer) -[![R-CMD-check](https://github.com/mauro-ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/mauro-ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml) +[![R-CMD-check](https://github.com/ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml) ### Español diff --git a/README.md b/README.md index 1660f60..e0cc4d0 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,7 @@ [![CRAN status](https://www.r-pkg.org/badges/version/ixplorer)](https://cran.r-project.org/package=ixplorer) -[![R-CMD-check](https://github.com/mauro-ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/mauro-ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml) +[![R-CMD-check](https://github.com/ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml/badge.svg)](https://github.com/ixpantia/ixplorer/actions/workflows/R-CMD-check.yaml) ### Español