From cc423f7510a18f37b9f6ecedeb653910d89c3b36 Mon Sep 17 00:00:00 2001 From: mrustl Date: Wed, 20 Mar 2024 11:06:57 +0100 Subject: [PATCH 1/2] Prepare v0.2.2 --- .github/workflows/R-CMD-check.yaml | 4 ++-- .github/workflows/pkgdown.yaml | 4 ++-- .github/workflows/test-coverage.yaml | 4 ++-- DESCRIPTION | 3 ++- NEWS.md | 11 +++++++++++ 5 files changed, 19 insertions(+), 7 deletions(-) diff --git a/.github/workflows/R-CMD-check.yaml b/.github/workflows/R-CMD-check.yaml index 5072506..1f81baf 100644 --- a/.github/workflows/R-CMD-check.yaml +++ b/.github/workflows/R-CMD-check.yaml @@ -33,11 +33,11 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-r@master + - uses: r-lib/actions/setup-r@v2 with: r-version: ${{ matrix.config.r }} - - uses: r-lib/actions/setup-pandoc@master + - uses: r-lib/actions/setup-pandoc@v2 - name: Query dependencies run: | diff --git a/.github/workflows/pkgdown.yaml b/.github/workflows/pkgdown.yaml index ff175b0..dc82cd4 100644 --- a/.github/workflows/pkgdown.yaml +++ b/.github/workflows/pkgdown.yaml @@ -21,9 +21,9 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-r@master + - uses: r-lib/actions/setup-r@v2 - - uses: r-lib/actions/setup-pandoc@master + - uses: r-lib/actions/setup-pandoc@v2 - name: Query dependencies run: | diff --git a/.github/workflows/test-coverage.yaml b/.github/workflows/test-coverage.yaml index e9a8566..624f48c 100644 --- a/.github/workflows/test-coverage.yaml +++ b/.github/workflows/test-coverage.yaml @@ -17,9 +17,9 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: r-lib/actions/setup-r@master + - uses: r-lib/actions/setup-r@v2 - - uses: r-lib/actions/setup-pandoc@master + - uses: r-lib/actions/setup-pandoc@v2 - name: Query dependencies run: | diff --git a/DESCRIPTION b/DESCRIPTION index 5cbfb9a..c8cf524 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: pkgmeta Title: R Package for Meta-Analysis of KWB-R Packages on Github -Version: 0.2.1 +Version: 0.2.2 Authors@R: c( person("Michael", "Rustler", , "michael.rustler@kompetenz-wasser.de", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-0647-7726")), @@ -53,6 +53,7 @@ Remotes: github::kwb-r/kwb.utils, github::Lchiffon/wordcloud2, github::ropensci/codemetar@v0.3.0, + github::rstudio/packrat@v0.7.0, github::uptake/pkgnet@d1e974de299d46e71b082e027a71b8b254edc9b2 Encoding: UTF-8 LazyData: true diff --git a/NEWS.md b/NEWS.md index 22d4ca5..12f7bcf 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,14 @@ +# [pkgmeta 0.2.2](https://github.com/KWB-R/pkgmeta/releases/tag/v0.2.2) 2024-03-20 + +Make sure that dependency [packrat](https://github.com/rstudio/packrat) is +installed from GitHub in version `0.7.0`, as in later versions the behavior of +`packrat:::recursivePackageDependencies()` changed and is incompatible with this +package. + +To do in later releases: check what has been changed or check alternative approaches +for finding the reverse dependencies. + + # [pkgmeta 0.2.1](https://github.com/KWB-R/pkgmeta/releases/tag/v0.2.1) 2022-06-01 * Bugfix: due to renamed organisation (formerly: `UptakeOpenSource`, now: `uptake`) From 1a45087cc8cea71bebd4612bb97f8c527cb862f6 Mon Sep 17 00:00:00 2001 From: mrustl Date: Wed, 20 Mar 2024 12:53:11 +0100 Subject: [PATCH 2/2] try to fix :book: and GH action --- DESCRIPTION | 2 +- R/plot_commits_github.R | 3 +-- man/plot_commits_github.Rd | 3 +-- 3 files changed, 3 insertions(+), 5 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index c8cf524..7072c77 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -57,4 +57,4 @@ Remotes: github::uptake/pkgnet@d1e974de299d46e71b082e027a71b8b254edc9b2 Encoding: UTF-8 LazyData: true -RoxygenNote: 7.1.2 +RoxygenNote: 7.3.1 diff --git a/R/plot_commits_github.R b/R/plot_commits_github.R index 933f324..9bb422b 100644 --- a/R/plot_commits_github.R +++ b/R/plot_commits_github.R @@ -1,7 +1,6 @@ #' Plot Commits GitHub #' -#' @param repos_commits tibble as retrieved by -#' \code{\link{github_commits_repos}} +#' @param repos_commits tibble as retrieved by \link{\code{get_github_commits_repos}} #' @return ggplot of temporal development of commits for KWB-R on Github #' @export #' @importFrom dplyr count rename left_join diff --git a/man/plot_commits_github.Rd b/man/plot_commits_github.Rd index ca30c8d..9d90db8 100644 --- a/man/plot_commits_github.Rd +++ b/man/plot_commits_github.Rd @@ -7,8 +7,7 @@ plot_commits_github(repos_commits) } \arguments{ -\item{repos_commits}{tibble as retrieved by -\code{\link{github_commits_repos}}} +\item{repos_commits}{tibble as retrieved by \link{\code{get_github_commits_repos}}} } \value{ ggplot of temporal development of commits for KWB-R on Github