Skip to content

Commit

Permalink
Merge pull request #565 from OuhscBbmc/dev
Browse files Browse the repository at this point in the history
prep for v1.4.0 release
  • Loading branch information
wibeasley authored Jan 11, 2025
2 parents d12dc50 + 6238660 commit 2ccf1dc
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 27 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Description: Encapsulates functions to streamline calls from R to the REDCap
University. The Application Programming Interface (API) offers an avenue
to access and modify data programmatically, improving the capacity for
literate and reproducible programming.
Version: 1.3.0.9000
Version: 1.4.0
Authors@R: c(person("Will", "Beasley", role = c("aut", "cre"), email =
"wibeasley@hotmail.com", comment = c(ORCID = "0000-0002-5613-5006")),
person("David", "Bard", role = "ctb", comment = c(ORCID = "0000-0002-3922-8489")),
Expand Down
16 changes: 1 addition & 15 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,6 @@
# REDCapR (development version)

Release History
==========================================================

<!-- pkgdown won't show this section because the header doesn't match a pattern. -->
Quick links:

* [CRAN Archive of older versions](https://cran.r-project.org/src/contrib/Archive/REDCapR/)
* [Current & previous GitHub Issues](https://github.com/OuhscBbmc/REDCapR/issues?q=is%3Aissue)
* [Documentation for current GitHub version](https://ouhscbbmc.github.io/REDCapR/)

Version 1.4.x (Not yet released on CRAN)
Version 1.4.0 (released 2025-01-11)
==========================================================

These features are not yet on CRAN. Install with `remotes::install_github("OuhscBbmc/REDCapR")`

### New Features

* `redcap_file_repo_list_oneshot()` export a list of files/folders from the file repository (requested by @agdamsbo, #549)
Expand Down
4 changes: 2 additions & 2 deletions R/helpers-testing.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ retrieve_credential_testing <- function(
checkmate::assert_character(username , any.missing = TRUE , min.chars = 2, max.chars = 50)

server_instance <-
if(Sys.getenv("redcapr_test_server") != "") {
if (Sys.getenv("redcapr_test_server") != "") {
Sys.getenv("redcapr_test_server")
} else {
# nocov start
Expand Down Expand Up @@ -70,7 +70,7 @@ retrieve_plugins <- function(plugin_name) {
checkmate::assert_character(plugin_name , any.missing = FALSE, min.chars = 2, max.chars = 50)

server_instance <-
if(Sys.getenv("redcapr_test_server") != "") {
if (Sys.getenv("redcapr_test_server") != "") {
Sys.getenv("redcapr_test_server")
} else {
# nocov start
Expand Down
21 changes: 12 additions & 9 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,25 @@
Description
===============================================

This submission is primarily to address a failing test.
One of the test (out of hundreds) was missing `testthat::skip_on_cran()`.
This submission is primarily to address vignettes were calling an external server.
When that dev server had maintenance on
[Dec 13](https://www.stats.ox.ac.uk/pub/bdr/Rblas/MKL/REDCapR.out), Brian Ripley requested that
the vignettes be modified to comply with the CRAN policy that states
no external sources should be called.

Thank you for taking the time to review my submission, and please tell me if there's something else I should do for CRAN. -Will Beasley

Test environments
-----------------------------------------------

1. Local Ubuntu, R 4.4.1
2. Local Win11, R 4.4.1 patched
1. Local Ubuntu, R 4.4.2
2. Local Win11, R 4.4.2 patched
3. R-hub
1. [Ubuntu Linux, R-devel](https://github.com/OuhscBbmc/REDCapR/actions/runs/11469699615/job/31917444604)
2. [Windows Server, R-devel](https://github.com/OuhscBbmc/REDCapR/actions/runs/11469699615/job/31917445020)
3. [MacOS, R-devel](https://github.com/OuhscBbmc/REDCapR/actions/runs/11469699615/job/31917445170)
4. [win-builder](https://win-builder.r-project.org/7m12AMR9sIC2//), development version.
5. [GiHub Actions R-CMD-check](https://github.com/OuhscBbmc/REDCapR/actions/workflows/check-release.yaml), Ubuntu 22.04 LTS
1. [Ubuntu Linux, R-devel](https://github.com/OuhscBbmc/REDCapR/actions/runs/12719261459/job/35459171237)
2. [Windows Server, R-devel](https://github.com/OuhscBbmc/REDCapR/actions/runs/12719261459/job/35459171426)
3. [MacOS, R-devel](https://github.com/OuhscBbmc/REDCapR/actions/runs/12719261459/job/35459171708)
4. [win-builder](https://win-builder.r-project.org/O603j9cGa700), development version.
5. [GiHub Actions R-CMD-check](https://github.com/OuhscBbmc/REDCapR/actions/workflows/check-release.yaml), Ubuntu 24.04 LTS

R CMD check results
-----------------------------------------------
Expand Down

0 comments on commit 2ccf1dc

Please sign in to comment.