Skip to content

Commit

Permalink
Bump version to 0.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gadenbuie committed Dec 22, 2021
1 parent 4d0e6a1 commit 9a6aed9
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: ggcheck
Title: Inspect 'ggplot2' Plots for Automated Grading in Learning Exercises
Version: 0.0.1
Version: 0.0.2
Authors@R: c(
person("Garrick", "Aden-Buie", , "garrick@rstudio.com", role = c("aut", "cre"),
comment = c(ORCID = "0000-0002-7111-0077")),
Expand Down
15 changes: 15 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
<!-- NEWS.md is maintained by https://cynkra.github.io/fledge, do not edit -->

# ggcheck 0.0.2 (2021-12-22)

## New Features

* New functions for checking plot labels (#22)
- `get_labels()` lists (a subset of) the labels of a plot
- `uses_labels()` checks if labels match their expected values
- Added `fail_if_not_ggplot()` for use in grading code to check that the submitted result is a ggplot, powered by the lower-level testing function `is_ggplot()` (#29).

## Improvements and Updates

- Improve handling of `...` in `uses_labels()` (#26)
- Unnamed arguments to `uses_labels()` check if label is set (#27)
- Check for `aes` params in `uses_geom_param()` (#28)

# ggcheck 0.0.1 (2021-10-22)

- Initial release of ggcheck

0 comments on commit 9a6aed9

Please sign in to comment.