-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
* Updating version number Also included the min dplyr version that supports `mutate_all` * Update README.md * Rob tidy (#41) * Updated documentation files. Removed some nonsense from the vignette header. Added import for mutate_all * Removes mutate_each as a requirement * Added news.md
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: dataCompareR | ||
Title: Compare Two Data Frames and Summarise the Difference | ||
Version: 0.1.0 | ||
Version: 0.1.1 | ||
Authors@R: c(person("Rob", "Noble-Eddy", email = "[email protected]", role = c("aut", "cre")), | ||
person("Sarah", "Johnston", role = c("aut")), | ||
person("Sarah", "Pollicott", role = c("aut")), | ||
|
@@ -30,7 +30,7 @@ Description: Easy comparison of two tabular data | |
Depends: | ||
R (>= 3.2.3) | ||
Imports: | ||
dplyr, | ||
dplyr (>= 0.5.0), | ||
knitr, | ||
stringi, | ||
markdown | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# dataComparepR 0.1.0 | ||
|
||
Intial release | ||
|
||
# dataComparepR 0.1.1 | ||
|
||
Mainly fixes compatibility with new versions of dplyr by using `mutate_all` rather than `mutate_each`. Also fixes some other minor bugs and typos in documentation. |