Skip to content

Commit eea0f70

Browse files
authored
RC 0.7.1 (#2141)
* Update `cran-comments.md` * Increment version number to 0.7.1
1 parent c84a7d4 commit eea0f70

File tree

4 files changed

+4
-36
lines changed

4 files changed

+4
-36
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.7.0.9000
3+
Version: 0.7.1
44
Authors@R: c(
55
person("Hadley", "Wickham", , "[email protected]", role = "aut"),
66
person("Lionel", "Henry", , "[email protected]", role = "aut"),

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.7.1
22

33
* Fixed some protection issues discovered by rchk.
44

cran-comments.md

Lines changed: 1 addition & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,33 +1 @@
1-
This is a rather large minor release.
2-
3-
We expect a few breakages as listed here https://github.com/r-lib/vctrs/issues/2131. All packages have been given at least a month to update.
4-
5-
We are not yet fully API compliant, but we have made significant progress on this.
6-
7-
From:
8-
9-
```
10-
Found non-API calls to R: ‘ATTRIB’, ‘BODY’, ‘CLOENV’, ‘ENCLOS’,
11-
‘EXTPTR_PROT’, ‘EXTPTR_TAG’, ‘FORMALS’, ‘FRAME’, ‘HASHTAB’,
12-
‘IS_S4_OBJECT’, ‘LEVELS’, ‘OBJECT’, ‘PRENV’, ‘PRVALUE’,
13-
‘R_PromiseExpr’, ‘Rf_allocSExp’, ‘Rf_findVarInFrame3’, ‘SETLENGTH’,
14-
‘SET_ATTRIB’, ‘SET_BODY’, ‘SET_CLOENV’, ‘SET_ENCLOS’,
15-
‘SET_FORMALS’, ‘SET_GROWABLE_BIT’, ‘SET_OBJECT’, ‘SET_S4_OBJECT’,
16-
‘SET_TRUELENGTH’, ‘STDVEC_DATAPTR’, ‘STRING_PTR’, ‘TRUELENGTH’,
17-
‘UNSET_S4_OBJECT’
18-
These entry points may be removed soon:
19-
‘SET_ENCLOS’, ‘STDVEC_DATAPTR’, ‘SET_S4_OBJECT’, ‘UNSET_S4_OBJECT’, ‘EXTPTR_PROT’, ‘EXTPTR_TAG’, ‘FRAME’, ‘HASHTAB’, ‘IS_S4_OBJECT’, ‘BODY’, ‘FORMALS’, ‘CLOENV’, ‘ENCLOS’, ‘OBJECT’, ‘SET_FORMALS’, ‘SET_BODY’, ‘SET_CLOENV’, ‘STRING_PTR’, ‘LEVELS’, ‘SET_GROWABLE_BIT’, ‘TRUELENGTH’, ‘SET_TRUELENGTH’, ‘SETLEN
20-
```
21-
22-
To:
23-
24-
```
25-
Found non-API calls to R: ‘ATTRIB’, ‘PRVALUE’, ‘Rf_findVarInFrame3’,
26-
‘SET_ATTRIB’
27-
```
28-
29-
- Removing `PRVALUE()` and `Rf_findVarInFrame3()` require changes to base R as discussed with Luke and outlined in https://gist.github.com/lionel-/1ebcbd5ec69c0775d514c329522408a3.
30-
31-
- Both `ATTRIB()` and `SET_ATTRIB()` are newly generating a NOTE, and we have not yet had time to unwind our usage of them. The latest release of rlang is in the same state, and base R's replacement APIs for these seem to still be a little in flux.
32-
33-
We request that you release vctrs anyways since we have made significant progress here, which will unblock a dplyr release. In follow up rlang and vctrs releases we can focus on removing `ATTRIB()` and `SET_ATTRIB()` as well!
1+
This is a patch release with no expected breakage.

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.7.0.9000";
4+
const char* vctrs_version = "0.7.1";
55

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

0 commit comments

Comments
 (0)