Skip to content

Commit

Permalink
Bump version to 0.0.3 (#162)
Browse files Browse the repository at this point in the history
- Pin vthemes version to >= 0.1.0
- Update NEWS.md
  • Loading branch information
jpdunc23 authored Jul 3, 2023
1 parent e79fa56 commit a0be1f3
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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")),
Expand Down Expand Up @@ -40,7 +40,7 @@ Imports:
tibble,
tidyr,
tidyselect,
vthemes,
vthemes (>= 0.1.0),
yardstick
Suggests:
broom,
Expand Down
29 changes: 28 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit a0be1f3

Please sign in to comment.