Skip to content

Commit 8632e52

Browse files
authored
Merge pull request #1773 from DavisVaughan/rc/0.5.2
RC 0.5.2
2 parents db967f2 + 0aac1b3 commit 8632e52

File tree

5 files changed

+5
-4
lines changed

5 files changed

+5
-4
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: vctrs
22
Title: Vector Helpers
3-
Version: 0.5.1.9000
3+
Version: 0.5.2
44
Authors@R:
55
c(person(given = "Hadley",
66
family = "Wickham",

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# vctrs (development version)
1+
# vctrs 0.5.2
22

33
* New `vec_expand_grid()`, which is a lower level helper that is similar to
44
`tidyr::expand_grid()` (#1325).

cran-comments.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Fixes the failure with R-devel.
1+
This is a patch release with no expected breakage of any reverse dependencies.

src/bind.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -242,6 +242,7 @@ r_obj* vec_rbind(r_obj* xs,
242242

243243
df_c_fallback(out, ptype, xs, n_rows, name_spec, name_repair, error_call);
244244
out = vec_restore_recurse(out, ptype, VCTRS_OWNED_true);
245+
KEEP_AT(out, out_pi);
245246

246247
if (has_names_to) {
247248
out = df_poke(out, names_to_loc, names_to_col);

src/version.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#define R_NO_REMAP
22
#include <Rinternals.h>
33

4-
const char* vctrs_version = "0.5.1.9000";
4+
const char* vctrs_version = "0.5.2";
55

66
/**
77
* This file records the expected package version in the shared

0 commit comments

Comments
 (0)