From 2d7c03a6e08f239c4f983da20d97f78569013451 Mon Sep 17 00:00:00 2001 From: eutwt <11261404+eutwt@users.noreply.github.com> Date: Sat, 15 Nov 2025 11:46:02 -0500 Subject: [PATCH 1/3] Prepare release 0.3.1 --- DESCRIPTION | 2 +- NEWS.md | 2 +- README.md | 8 ++++---- cran-comments.md | 14 +++++++++++++- 4 files changed, 19 insertions(+), 7 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 422c0f7..836f90b 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: versus Title: Compare Data Frames -Version: 0.3.0.9000 +Version: 0.3.1 Authors@R: c( person("Ryan", "Dickerson", , "fresh.tent5866@fastmail.com", role = c("aut", "cre", "cph")), person("Eli", "Pousson", , "eli.pousson@gmail.com", role = "ctb", diff --git a/NEWS.md b/NEWS.md index 8f55e82..a7015f6 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# versus (development version) +# versus 0.3.1 * New `table_id` argument in `compare()` allows custom table identifiers. By default, outputs identify tables as "a" and "b". You can now provide diff --git a/README.md b/README.md index f8acc00..be447c6 100644 --- a/README.md +++ b/README.md @@ -66,10 +66,10 @@ Use `compare()` to create a comparison of two tables. A comparison contains: -- `compare()$intersection`: columns in both tables and rows with - differing values -- `compare()$unmatched_cols`: columns in only one table -- `compare()$unmatched_rows`: rows in only one table +- `compare()$intersection`: columns in both tables and rows with + differing values +- `compare()$unmatched_cols`: columns in only one table +- `compare()$unmatched_rows`: rows in only one table ``` r comparison <- compare(example_df_a, example_df_b, by = car) diff --git a/cran-comments.md b/cran-comments.md index 0037a2f..842546c 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,3 +1,15 @@ +## Test environments + +* local macOS 14.4.1, R 4.5.1 +* win-builder (devel) — submitted via `devtools::check_win_devel()`, results pending + ## R CMD check results -0 errors | 0 warnings | 0 notes +0 errors | 0 warnings | 1 note + +* checking for future file timestamps ... NOTE + unable to verify current time (expected in sandboxed CI environment) + +## Additional comments + +* Current CRAN check results for 0.3.0 show a NOTE about the non-API call `STRING_PTR` in compiled code. The package no longer includes compiled code, so this NOTE should disappear with 0.3.1. From 9de0d6573e0d0b816c8001c3c00aca272773e7f3 Mon Sep 17 00:00:00 2001 From: eutwt <11261404+eutwt@users.noreply.github.com> Date: Sat, 15 Nov 2025 12:05:24 -0500 Subject: [PATCH 2/3] Update cran-comments with win-builder results --- cran-comments.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cran-comments.md b/cran-comments.md index 842546c..a1ed5ee 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,14 +1,16 @@ ## Test environments * local macOS 14.4.1, R 4.5.1 -* win-builder (devel) — submitted via `devtools::check_win_devel()`, results pending +* win-builder (devel) ## R CMD check results -0 errors | 0 warnings | 1 note +0 errors | 0 warnings | 1 note (local) / 1 note (win-builder) -* checking for future file timestamps ... NOTE +* Local macOS: `checking for future file timestamps ... NOTE` unable to verify current time (expected in sandboxed CI environment) +* Win-builder (devel): `checking CRAN incoming feasibility ... NOTE` + Version contains large components (0.3.0.9000) — expected when checking dev builds ## Additional comments From 080ccd75e7810cf04d9200f93cc417c4ce1d7c19 Mon Sep 17 00:00:00 2001 From: eutwt <11261404+eutwt@users.noreply.github.com> Date: Sun, 16 Nov 2025 15:00:30 -0500 Subject: [PATCH 3/3] Bump version to 0.3.1.9000 --- DESCRIPTION | 2 +- NEWS.md | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/DESCRIPTION b/DESCRIPTION index 836f90b..2e9bf5a 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: versus Title: Compare Data Frames -Version: 0.3.1 +Version: 0.3.1.9000 Authors@R: c( person("Ryan", "Dickerson", , "fresh.tent5866@fastmail.com", role = c("aut", "cre", "cph")), person("Eli", "Pousson", , "eli.pousson@gmail.com", role = "ctb", diff --git a/NEWS.md b/NEWS.md index a7015f6..d26e5e1 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,5 @@ +# versus (development version) + # versus 0.3.1 * New `table_id` argument in `compare()` allows custom table identifiers.