Skip to content

Commit ca1b533

Browse files
authored
Release v1.1.2 (#146)
1 parent 02dba73 commit ca1b533

File tree

6 files changed

+34
-7
lines changed

6 files changed

+34
-7
lines changed

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: diffdf
22
Type: Package
33
Title: Dataframe Difference Tool
4-
Version: 1.1.1
4+
Version: 1.1.2
55
Authors@R: c(
66
person("Craig" ,"Gower-Page" , email = "craiggower@gmail.com" , role = c("cre","aut")),
77
person("Kieran", "Martin" , email = "kieranjmartin@gmail.com" , role = "aut")
@@ -35,6 +35,6 @@ RoxygenNote: 7.3.3
3535
Roxygen: list(markdown = TRUE)
3636
VignetteBuilder: knitr
3737
License: MIT + file LICENSE
38-
URL: https://gowerc.github.io/diffdf/, https://github.com/gowerc/diffdf/
38+
URL: https://gowerc.github.io/diffdf/, https://github.com/gowerc/diffdf
3939
Config/testthat/edition: 3
4040
BugReports: https://github.com/gowerc/diffdf/issues

NEWS.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11

22

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

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

4756
# diffdf 1.0.0
4857

49-
- Initial Release !!
58+
- Initial Release !!

R/print.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@
1717
#' COMPARE <- diffdf(iris, x)
1818
#' print(COMPARE)
1919
#' print(COMPARE, row_limit = 5)
20+
#' \dontrun{
2021
#' print(COMPARE, file = "output.txt")
22+
#' }
2123
#'
2224
#' @export
2325
print.diffdf <- function(x, row_limit = 10, as_string = FALSE, file = NULL, ...) {

cran-comments.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,34 @@
1-
## Resubmission
1+
## Diffdf v1.1.2
22

3-
This is a resubmission. In this version I have:
3+
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.
4+
5+
In this verion of diffdf
6+
- we made several bug fixes for user reported issues namely:
7+
- Fixed bug of where an internal function was reliant on a partial argument match
8+
- Fixed bug where `diffdf()` would error if the input was a non-trivial expression
9+
- Fixed bug where `diffdf()` would error if an input dataset contained a POSIXct column which contains a missing value
10+
- Added argument to `print()` function to allow users to print more than 10 rows at once when creating a file output
411

5-
* Added `.markdownlintignore` to the `.Rbuildignore` file
612

713

814
## R CMD check results
915

1016
R CMD check results
11-
0 errors ✔ | 0 warnings ✔ | 0 notes ✔
17+
Status: 1 NOTE
18+
19+
New maintainer:
20+
Craig Gower-Page <craiggower@gmail.com>
21+
Old maintainer(s):
22+
Craig Gower-Page <craig.gower-page@roche.com>
1223

1324
## revdepcheck results
1425

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

1728
- admiral
1829
- admiraldev
30+
- admiralmetabolic
31+
- admiralneuro
1932
- admiralonco
2033
- admiralophtha
2134
- admiralvaccine

inst/WORDLIST

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,3 +12,4 @@ compareDF
1212
daff
1313
diffobj
1414
waldo
15+
POSIXct

man/print.diffdf.Rd

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)