From 5801c0f3148fa46228133a223e75455cac38b089 Mon Sep 17 00:00:00 2001 From: colin Date: Tue, 27 Aug 2024 18:12:46 +0200 Subject: [PATCH] doc: news update --- DESCRIPTION | 2 +- NEWS.md | 12 ++++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 15a0a8d1..70bd028c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: golem Title: A Framework for Robust Shiny Applications -Version: 0.5.1 +Version: 0.5.1.9001 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 57a165d7..08cc227f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,17 @@ > 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 to 0.6.0 + +## Breaking change + +- The use_*_files now fail when: + - The directory where the user tries to add the file doesn't exist. `{golem}` used to try to create the directory but that's not the function job — use_*_file functions should only be there to add file (Singe responsabily ) + - The file that the user tries to create already exists + +## Internal changes + +- Full refactoring of the use_*_files functions that now all share the same behavior + # golem 0.5.1 * Hotfixing a bug with utils_download_file (#1168)