From 765a600621ff1faba0317f831b49e856645f512e Mon Sep 17 00:00:00 2001 From: DavisVaughan Date: Fri, 20 Jan 2023 16:02:55 -0500 Subject: [PATCH 1/5] Increment version number to 0.5.2 --- DESCRIPTION | 2 +- NEWS.md | 2 +- src/version.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 1695964bc..61e2434ca 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: vctrs Title: Vector Helpers -Version: 0.5.1.9000 +Version: 0.5.2 Authors@R: c(person(given = "Hadley", family = "Wickham", diff --git a/NEWS.md b/NEWS.md index 60dddec7a..e96b4f23f 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# vctrs (development version) +# vctrs 0.5.2 * New `vec_expand_grid()`, which is a lower level helper that is similar to `tidyr::expand_grid()` (#1325). diff --git a/src/version.c b/src/version.c index 573a574a3..35c6ced1a 100644 --- a/src/version.c +++ b/src/version.c @@ -1,7 +1,7 @@ #define R_NO_REMAP #include -const char* vctrs_version = "0.5.1.9000"; +const char* vctrs_version = "0.5.2"; /** * This file records the expected package version in the shared From c47b2f03ab4d1a2573eba6e88a4c253d405a5e8e Mon Sep 17 00:00:00 2001 From: DavisVaughan Date: Fri, 20 Jan 2023 16:04:28 -0500 Subject: [PATCH 2/5] Update `cran-comments.md` --- cran-comments.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cran-comments.md b/cran-comments.md index 3585fd769..1ea825650 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1 +1 @@ -Fixes the failure with R-devel. +This is a patch release with no expected breakage of any reverse dependencies. From 9f5f4e12db8740e0cae3c0fa0ace31e81a4f38ba Mon Sep 17 00:00:00 2001 From: DavisVaughan Date: Sat, 21 Jan 2023 09:23:44 -0500 Subject: [PATCH 3/5] Fix protection issue detected by rchk ``` #> [UP] calling allocating function df_poke with a fresh pointer (out ) /home/docker/R-svn/packages/build/MBHF3DPc/vctrs/src/bind.c:247 ``` --- src/bind.c | 1 + 1 file changed, 1 insertion(+) diff --git a/src/bind.c b/src/bind.c index 506024be6..335574c24 100644 --- a/src/bind.c +++ b/src/bind.c @@ -242,6 +242,7 @@ r_obj* vec_rbind(r_obj* xs, df_c_fallback(out, ptype, xs, n_rows, name_spec, name_repair, error_call); out = vec_restore_recurse(out, ptype, VCTRS_OWNED_true); + KEEP_AT(out, out_pi); if (has_names_to) { out = df_poke(out, names_to_loc, names_to_col); From 639419b128141ec50ec83c0158659d3ff946a944 Mon Sep 17 00:00:00 2001 From: DavisVaughan Date: Sat, 21 Jan 2023 15:11:46 -0500 Subject: [PATCH 4/5] CRAN-SUBMISSION --- CRAN-SUBMISSION | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 CRAN-SUBMISSION diff --git a/CRAN-SUBMISSION b/CRAN-SUBMISSION new file mode 100644 index 000000000..599b1a7f5 --- /dev/null +++ b/CRAN-SUBMISSION @@ -0,0 +1,3 @@ +Version: 0.5.2 +Date: 2023-01-21 20:11:35 UTC +SHA: 9f5f4e12db8740e0cae3c0fa0ace31e81a4f38ba From 0aac1b35bf24365ef35e694ad0e73f7b49573e7b Mon Sep 17 00:00:00 2001 From: DavisVaughan Date: Mon, 23 Jan 2023 08:49:43 -0500 Subject: [PATCH 5/5] Delete CRAN-SUBMISSION --- CRAN-SUBMISSION | 3 --- 1 file changed, 3 deletions(-) delete mode 100644 CRAN-SUBMISSION diff --git a/CRAN-SUBMISSION b/CRAN-SUBMISSION deleted file mode 100644 index 599b1a7f5..000000000 --- a/CRAN-SUBMISSION +++ /dev/null @@ -1,3 +0,0 @@ -Version: 0.5.2 -Date: 2023-01-21 20:11:35 UTC -SHA: 9f5f4e12db8740e0cae3c0fa0ace31e81a4f38ba