Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: diffdf
Type: Package
Title: Dataframe Difference Tool
Version: 1.1.1
Version: 1.1.2
Authors@R: c(
person("Craig" ,"Gower-Page" , email = "craiggower@gmail.com" , role = c("cre","aut")),
person("Kieran", "Martin" , email = "kieranjmartin@gmail.com" , role = "aut")
Expand Down Expand Up @@ -35,6 +35,6 @@ RoxygenNote: 7.3.3
Roxygen: list(markdown = TRUE)
VignetteBuilder: knitr
License: MIT + file LICENSE
URL: https://gowerc.github.io/diffdf/, https://github.com/gowerc/diffdf/
URL: https://gowerc.github.io/diffdf/, https://github.com/gowerc/diffdf
Config/testthat/edition: 3
BugReports: https://github.com/gowerc/diffdf/issues
11 changes: 10 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@


# diffdf 1.1.2

Mostly just bug fixes:
- Fixed bug of where an internal function was reliant on a partial argument match (#138)
- Fixed bug where `diffdf()` would error if the input was a complex expression (#133)
- Fixed bug where `diffdf()` would error if an input dataset contained a POSIXct column which contains a missing value (#132)
- Added argument to `print()` function to allow users to print more than 10 rows at once when creating a file output (#135)


# diffdf 1.1.1

Fix minor bug with CRAN submission (missing file from `.Rbuildignore`)
Expand Down Expand Up @@ -46,4 +55,4 @@ Fix minor bug with CRAN submission (missing file from `.Rbuildignore`)

# diffdf 1.0.0

- Initial Release !!
- Initial Release !!
2 changes: 2 additions & 0 deletions R/print.R
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,9 @@
#' COMPARE <- diffdf(iris, x)
#' print(COMPARE)
#' print(COMPARE, row_limit = 5)
#' \dontrun{
#' print(COMPARE, file = "output.txt")
#' }
#'
#' @export
print.diffdf <- function(x, row_limit = 10, as_string = FALSE, file = NULL, ...) {
Expand Down
21 changes: 17 additions & 4 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,21 +1,34 @@
## Resubmission
## Diffdf v1.1.2

This is a resubmission. In this version I have:
Note that I have updated the maintainer email. The previous email was my work email for my former employer which I have since left. The new email is my personal email address. I no longer have access to nor control the prior work email address.

In this verion of diffdf
- we made several bug fixes for user reported issues namely:
- Fixed bug of where an internal function was reliant on a partial argument match
- Fixed bug where `diffdf()` would error if the input was a non-trivial expression
- Fixed bug where `diffdf()` would error if an input dataset contained a POSIXct column which contains a missing value
- Added argument to `print()` function to allow users to print more than 10 rows at once when creating a file output

* Added `.markdownlintignore` to the `.Rbuildignore` file


## R CMD check results

R CMD check results
0 errors ✔ | 0 warnings ✔ | 0 notes ✔
Status: 1 NOTE

New maintainer:
Craig Gower-Page <craiggower@gmail.com>
Old maintainer(s):
Craig Gower-Page <craig.gower-page@roche.com>

## revdepcheck results

We checked the following reverse dependencies, all passed with no issues:

- admiral
- admiraldev
- admiralmetabolic
- admiralneuro
- admiralonco
- admiralophtha
- admiralvaccine
Expand Down
1 change: 1 addition & 0 deletions inst/WORDLIST
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,4 @@ compareDF
daff
diffobj
waldo
POSIXct
2 changes: 2 additions & 0 deletions man/print.diffdf.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading