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..7072c77 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,7 +53,8 @@ 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
-RoxygenNote: 7.1.2
+RoxygenNote: 7.3.1
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`)
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