Skip to content

Commit

Permalink
Merge pull request #123 from ThinkR-open/dev-again
Browse files Browse the repository at this point in the history
chore: bump to dev version
  • Loading branch information
statnmap authored May 17, 2024
2 parents 88e77ce + 02ebe4e commit 15d9310
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: gitlabr
Title: Access to the 'GitLab' API
Version: 2.1.0
Version: 2.1.0.9000
Authors@R: c(
person("Jirka", "Lewandowski", , "[email protected]", role = "aut"),
person("Sébastien", "Rochette", , "[email protected]", role = c("aut", "cre"),
Expand Down
2 changes: 2 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# gitlabr (development version)

# gitlabr 2.1.0

## Breaking changes
Expand Down
11 changes: 7 additions & 4 deletions dev/dev_history.R
Original file line number Diff line number Diff line change
Expand Up @@ -175,15 +175,18 @@ devtools::release()

# Thanks for article
library(purrr)
repos <- gh::gh("/repos/ThinkR-open/gitlabr/stats/contributors")
map(repos, "author") %>% map("login")

repos <- gh::gh("/repos/thinkr-open/gitlabr/contributors")
map(repos, "login")

map_chr(repos, ~ paste0(
# "[&#x0040;",
"[",
pluck(.x, "author", "login"),
pluck(.x, "login"),
"](",
pluck(.x, "author", "html_url"),
pluck(.x, "html_url"),
")"
)) %>%
glue::glue_collapse(sep = ", ", last = " and ")

gh::gh("/repos/ThinkR-open/gitlabr/contributors")

0 comments on commit 15d9310

Please sign in to comment.