From 02d25904a1c676606fe6998a55537846e863649e Mon Sep 17 00:00:00 2001 From: banasm Date: Thu, 9 May 2024 12:02:45 +0000 Subject: [PATCH] Bump version. --- DESCRIPTION | 2 +- NEWS.md | 6 +++++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 0bb1df32..c26ee266 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: GitStats Title: Get Statistics from GitHub and GitLab -Version: 2.0.0.9001 +Version: 2.0.1 Authors@R: c( person(given = "Maciej", family = "Banas", email = "banasmaciek@gmail.com", role = c("aut", "cre")), person(given = "Kamil", family = "Koziej", email = "koziej.k@gmail.com", role = "aut"), diff --git a/NEWS.md b/NEWS.md index 283d5b7b..d3f120bb 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,8 @@ -# GitStats (development version) +# GitStats 2.0.1 + +This is a patch release with some hot issues that needed to be addressed, notably covering `set_*_host()` functions with `verbose` control, fixing pulling data for GitLab subgroups and substantially speeding up `get_files()` function. + +## Features: - Getting files feature has been speeded up with switching to `Search API` instead of pulling files via `GraphQL` via iteration over organizations and repositories ([#411](https://github.com/r-world-devs/GitStats/issues/411)). - When setting hosts to be scanned in whole (without specifying `orgs` or `repos`) GitStats does not pull no more all organizations. Pulling all organizations from host is triggered only when user decides to pull repositories from organizations. If he decides, e.g. to pull repositories by code, there is no need to pull all organizations (which may be a time consuming process), as GitStats uses then `Search API` ([#393](https://github.com/r-world-devs/GitStats/issues/393)).