Skip to content

Commit 497c62e

Browse files
committed
Collapse the NEWS bullet
1 parent 7e9aff4 commit 497c62e

File tree

1 file changed

+12
-7
lines changed

1 file changed

+12
-7
lines changed

NEWS.md

Lines changed: 12 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,18 @@
66
have not already been defined elsewhere. This is motivated by the fact that
77
`R_NO_REMAP` is becoming the default for C++ code in R 4.5.0 (#410).
88

9-
* Because cpp11 now requires R >=4.0.0 and `R_UnwindProtect()` is always
10-
available, `HAS_UNWIND_PROTECT` is no longer useful. Please avoid using it,
11-
as we'd like to remove it in the future (#411).
12-
13-
* Because cpp11 now requires R >=4.0.0 and ALTREP is always available, the
14-
`cpp11/altrep.hpp` file is no longer useful. Please avoid using `#include "cpp11/altrep.hpp"` and `HAS_ALTREP` as we'd like to remove them in the
15-
future (#411).
9+
* Because cpp11 now requires R >=4.0.0, a number of previously optional tools
10+
are now always available, allowing us to remove some dead code. In
11+
particular:
12+
13+
* `R_UnwindProtect()` is always available, so the defines `HAS_UNWIND_PROTECT`
14+
and `CPP11_UNWIND` are no longer useful.
15+
16+
* ALTREP is always available, so the file `cpp11/altrep.hpp` and the define
17+
`HAS_ALTREP` are no longer useful.
18+
19+
We would like to remove the dead code regarding these tools in the future, so
20+
we ask that you please remove usage of them from your own packages (#411).
1621

1722
* cpp11 now requires R >=4.0.0, in line with the
1823
[tidyverse version policy](https://www.tidyverse.org/blog/2019/04/r-version-support/) (#411).

0 commit comments

Comments
 (0)