From 8b765ff0341226e8aabfce2232fe703b2f3da531 Mon Sep 17 00:00:00 2001 From: edalfon Date: Thu, 18 Apr 2024 06:18:27 +0200 Subject: [PATCH] docs: add news and bump up version --- DESCRIPTION | 2 +- NEWS.md | 17 +++++++++++++++++ 2 files changed, 18 insertions(+), 1 deletion(-) create mode 100644 NEWS.md diff --git a/DESCRIPTION b/DESCRIPTION index 6b9f883..2e0fb92 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: flowme Title: Add boilerplate code to your project for some specific workflows -Version: 0.3.1 +Version: 0.4.0 Authors@R: person(given = "Eduardo", family = "Alfonso-Sierra", diff --git a/NEWS.md b/NEWS.md new file mode 100644 index 0000000..95d5446 --- /dev/null +++ b/NEWS.md @@ -0,0 +1,17 @@ +# flowme 0.4.0 + +A few changes to reflect our current usage of the flow + +* not using {conflicted} anymore. Instead, use the + [conflicts.policy option](https://blog.r-project.org/2019/03/19/managing-search-path-conflicts/) + set to strict and rely on good-old library calls making use of `mask.ok`, `exclude`, + `include.only` args to explicitly deal with conflicts. + +* keep using load_all for interactive use, and source to make everything available to + {targets} (although this will generate warnings when running document or test) + +* add by default a .radian_profile file, for our vscode users + +# flowme 0.3.1 + +* Initial version