From 91c31573a778b3082c474a1e71653660228573b5 Mon Sep 17 00:00:00 2001 From: colin Date: Tue, 27 Aug 2024 11:37:11 +0200 Subject: [PATCH] fix: fixing issue with recursive utils_download_file --- DESCRIPTION | 2 +- NEWS.md | 4 ++++ R/use_files.R | 4 ---- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 07787f20..15a0a8d1 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: golem Title: A Framework for Robust Shiny Applications -Version: 0.5.0 +Version: 0.5.1 Authors@R: c( person("Colin", "Fay", , "contact@colinfay.me", role = c("cre", "aut"), comment = c(ORCID = "0000-0001-7343-1846")), diff --git a/NEWS.md b/NEWS.md index b6e89580..57a165d7 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,9 @@ > Notes: the # between parenthesis refers to the related issue on GitHub, and the @ refers to an external contributor solving this issue. +# golem 0.5.1 + +* Hotfixing a bug with utils_download_file (#1168) + # golem 0.5.0 ## New functions diff --git a/R/use_files.R b/R/use_files.R index d4fe66e4..57b1f3c0 100644 --- a/R/use_files.R +++ b/R/use_files.R @@ -1,7 +1,3 @@ -# For mocking in test -utils_download_file <- function(...){ - utils_download_file(...) -} #' Use Files #' #' These functions download files from external sources and put them inside the `inst/app/www` directory.