Skip to content

Commit a72ae35

Browse files
committed
Fix deprecation of std::random_shuffle in C++14
1 parent 638c4c7 commit a72ae35

File tree

4 files changed

+12
-25
lines changed

4 files changed

+12
-25
lines changed

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# ggraph (development version)
22

3+
* Fix deprecation of std::random_shuffle in C++14 by specifyin C++11 as the
4+
compile version
5+
36
# ggraph 2.0.4
47

58
* Fix bug in faceting functions where using algorithms based on sampling

cran-comments.md

Lines changed: 7 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,13 @@
1-
This is a bugfix release with no new features and no breaking changes. The
2-
revdep failure was investigated and it was unrelated to ggraph
1+
This is a very minor release addressing the std::random_shuffle() deprecation in
2+
C++14
33

44
## Test environments
5-
* local R installation, R 4.0.1
6-
* ubuntu 16.04 (on travis-ci), R 4.0.1
7-
* win-builder (devel)
5+
6+
* GitHub Actions (ubuntu-16.04): devel, release, oldrel, 3.5, 3.4, 3.3
7+
* GitHub Actions (windows): release, oldrel
8+
* GitHub Actions (macOS): release
9+
* win-builder: devel
810

911
## R CMD check results
1012

1113
0 errors | 0 warnings | 0 note
12-
13-
## revdepcheck results
14-
15-
We checked 39 reverse dependencies (38 from CRAN + 1 from BioConductor), comparing R CMD check results across CRAN and dev versions of this package.
16-
17-
* We saw 1 new problems
18-
* We failed to check 1 packages
19-
20-
Issues with CRAN packages are summarised below.
21-
22-
### New problems
23-
(This reports the first line of each new failure)
24-
25-
* TextMiningGUI
26-
checking examples ... ERROR
27-
checking whether package ‘TextMiningGUI’ can be installed ... WARNING
28-
29-
### Failed to check
30-
31-
* phylopath (NA)

src/Makevars

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CXX_STD=CXX11

src/Makevars.win

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
CXX_STD=CXX11

0 commit comments

Comments
 (0)