From a0be1f36c975554d3d769e806389fda306c6a88f Mon Sep 17 00:00:00 2001 From: James Duncan Date: Mon, 3 Jul 2023 11:11:47 -0700 Subject: [PATCH] Bump version to 0.0.3 (#162) - Pin vthemes version to >= 0.1.0 - Update NEWS.md --- DESCRIPTION | 4 ++-- NEWS.md | 29 ++++++++++++++++++++++++++++- 2 files changed, 30 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index e4ac8b93..bd47c89a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: simChef Title: Intensive Computational Experiments Made Easy -Version: 0.0.2.9000 +Version: 0.0.3 Authors@R: c( person("James", "Duncan", , "jpduncan@berkeley.edu", role = c("aut", "cre"), comment = c(ORCID = "0000-0003-3297-681X")), @@ -40,7 +40,7 @@ Imports: tibble, tidyr, tidyselect, - vthemes, + vthemes (>= 0.1.0), yardstick Suggests: broom, diff --git a/NEWS.md b/NEWS.md index 913f6487..8eb280e6 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1 +1,28 @@ -# simChef (development version) +# simChef 0.0.3 + +* When creating simulation R Markdown, we now output full-sized figures by + default, rather than thumbnails (https://github.com/Yu-Group/simChef/pull/125). +* Renamed various docs-related functions; old names are deprecated but not removed: + - `create_doc_template()` is now `init_docs()`. + - `create_rmd()` is now `render_docs()`. + - `set_rmd_options()` is now `set_doc_options()`. +* `vary_across` can now handle multiple `DGP`/`Method` objects at once + (https://github.com/Yu-Group/simChef/pull/126). +* `create_docs()` now returns the `.Rmd` file, allowing users to directly edit + the simulation docs by hand, and allows for more bare-bones docs outputs + (https://github.com/Yu-Group/simChef/pull/139). +* Added the "Setting up your simulation" vignette with recommendations for + creating simulation projects that use `simChef` + (https://github.com/Yu-Group/simChef/pull/152). +* Added a helper function `create_sim()` for initializing a simulation project and + `run_tests()` for running `testthat` tests of a user's custom simulation + functions (https://github.com/Yu-Group/simChef/pull/155). +* Made quality of life improvements to the library of `Evaluator`/`Vizualizer` + helper functions (https://github.com/Yu-Group/simChef/pull/158). +* The default `Visualizer` plotting theme is now `ggplot`, which can now be + changed globally using the `simChef.plot_theme` option, e.g., to get the + previous default use `options(simChef.plot_theme = "vthemes")` + (https://github.com/Yu-Group/simChef/pull/161). +* Bug fixes and CI updates: + * https://github.com/Yu-Group/simChef/pull/129 + * https://github.com/Yu-Group/simChef/pull/134