-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: Deprecated 'trans' for new 'transform'
* In line with upstream changes in `{ggplot2}` the `trans` argument has been deprecated in various scales functions. Use the new `transform` argument instead (#113). * Several (continuous) scales now have an `...` argument which will passed onto `ggplot2::continuous_scale()`. * We now import {lifecycle} to help mark these deprecations but since {ggplot2} imports {lifecycle} and we import {ggplot2} this isn't a new de facto dependency. closes #113
- Loading branch information
Showing
12 changed files
with
477 additions
and
253 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: ggpattern | ||
Type: Package | ||
Title: 'ggplot2' Pattern Geoms | ||
Version: 1.1.0-5 | ||
Version: 1.1.0-6 | ||
Authors@R: c(person("Mike", "FC", role = "aut"), | ||
person("Trevor L.", "Davis", role = c("aut", "cre"), | ||
email = "[email protected]", | ||
|
@@ -19,6 +19,7 @@ Imports: | |
glue, | ||
grid, | ||
gridpattern (>= 1.2.0), | ||
lifecycle, | ||
rlang, | ||
scales, | ||
Suggests: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.