Skip to content

Commit 37e0215

Browse files
authored
Merge pull request #282 from lionel-/release-0.1.3
Release 0.1.3
2 parents ede7bdb + 8d7ed56 commit 37e0215

File tree

14 files changed

+854
-105
lines changed

14 files changed

+854
-105
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: rlang
2-
Version: 0.1.2
2+
Version: 0.1.4
33
Title: Functions for Base Types and Core R and 'Tidyverse' Features
44
Description: A toolbox for working with base types, core R features
55
like the condition system, and core 'Tidyverse' features like tidy

NEWS.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,11 @@
11

2+
# rlang 0.1.4
3+
4+
* `eval_tidy()` no longer maps over lists but returns them literally.
5+
This behaviour is an overlook from past refactorings and was never
6+
documented.
7+
8+
29
# rlang 0.1.2
310

411
This hotfix release makes rlang compatible with the R 3.1 branch.

R/eval-tidy.R

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -91,10 +91,6 @@
9191
#' eval_tidy(quo(!! cyl), mtcars)
9292
#' @name eval_tidy
9393
eval_tidy <- function(expr, data = NULL, env = caller_env()) {
94-
if (is_list(expr)) {
95-
return(map(expr, eval_tidy, data = data))
96-
}
97-
9894
if (!inherits(expr, "quosure")) {
9995
expr <- new_quosure(expr, env)
10096
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# rlang
22

33
[![Build Status](https://travis-ci.org/tidyverse/rlang.svg?branch=master)](https://travis-ci.org/tidyverse/rlang)
4-
[![Coverage Status](https://img.shields.io/codecov/c/github/tidyverse/rlang/master.svg)](https://codecov.io/github/tidyverse/rlang?branch=master)
4+
[![Coverage Status](http://codecov.io/github/tidyverse/rlang/coverage.svg?branch=master)](http://codecov.io/github/tidyverse/rlang?branch=master)
55

66
## Overview
77

cran-comments.md

Lines changed: 23 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11

2+
The rchk warnings should now be fixed.
3+
4+
25
## Test environments
36

4-
* local OS X install, R 3.4.1
5-
* ubuntu 12.04 (on travis-ci), R 3.4.1
7+
* local OS X install, R 3.4.2
8+
* ubuntu 12.04 (on travis-ci), R 3.4.2
69
* win-builder (devel and release)
710

811

@@ -13,7 +16,22 @@
1316

1417
## Reverse dependencies
1518

16-
I have run R CMD check on the 37 downstream dependencies. (Summary at
17-
https://github.com/tidyverse/rlang/tree/v0.1.2/revdep).
19+
I have run R CMD check on the 72 downstream dependencies.
20+
21+
There were 6 packages I couldn't check:
22+
23+
- bomrang
24+
- GSODR
25+
- pointblank
26+
- poppr
27+
- prisonbrief
28+
- sf
29+
30+
31+
There was 1 broken package :
32+
33+
- taxa
1834

19-
There were no problems.
35+
This is due to an intentional fix within rlang. I have sent a patch to
36+
`taxa` authors to fix this issue and they will send a CRAN update
37+
shortly.

revdep/README.md

Lines changed: 91 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -2,68 +2,114 @@
22

33
|field |value |
44
|:--------|:----------------------------|
5-
|version |R version 3.4.1 (2017-06-30) |
6-
|os |macOS Sierra 10.12 |
5+
|version |R version 3.4.2 (2017-09-28) |
6+
|os |macOS Sierra 10.12.6 |
77
|system |x86_64, darwin15.6.0 |
88
|ui |X11 |
99
|language |(EN) |
1010
|collate |en_US.UTF-8 |
1111
|tz |Europe/Brussels |
12-
|date |2017-08-08 |
12+
|date |2017-10-31 |
1313

1414
# Dependencies
1515

1616
|package |old |new |Δ |
1717
|:-------|:-----|:-----|:--|
18-
|rlang |0.1.1 |0.1.2 |* |
18+
|rlang |0.1.2 |0.1.2 |NA |
1919

2020
# Revdeps
2121

22+
## Couldn't check (6)
23+
24+
|package |version |error |warning |note |
25+
|:--------------------------------------|:-------|:-----|:-------|:----|
26+
|[bomrang](problems.md#bomrang) |0.0.8 |1 | | |
27+
|[GSODR](problems.md#gsodr) |1.1.0 |1 | |1 |
28+
|[pointblank](problems.md#pointblank) |0.1 |1 | | |
29+
|[poppr](problems.md#poppr) |2.5.0 |1 | | |
30+
|[prisonbrief](problems.md#prisonbrief) |0.1.0 |1 | | |
31+
|[sf](problems.md#sf) |0.5-5 |1 | |1 |
32+
2233
## Broken (1)
2334

2435
|package |version |error |warning |note |
2536
|:------------------------|:-------|:------|:-------|:----|
26-
|[banR](problems.md#banR) |0.2.0 |__+1__ | |1 |
37+
|[taxa](problems.md#taxa) |0.1.0 |__+2__ |__+1__ |1 |
2738

28-
## All (37)
39+
## All (72)
2940

30-
|package |version |error |warning |note |
31-
|:------------------------|:-------|:------|:-------|:----|
32-
|[banR](problems.md#banR) |0.2.0 |__+1__ | |1 |
33-
|dbplyr |1.1.0 | | |1 |
34-
|dexter |0.4.2 | |2 |1 |
35-
|dplyr |0.7.2 | | |2 |
36-
|fold |0.2.1 | | | |
37-
|ggformula |0.5 | | |1 |
38-
|iadf |0.1.0 | | | |
39-
|implyr |0.2.1 |1 | | |
40-
|later |0.3 | | | |
41-
|metaplot |0.1.5 | | | |
42-
|mosaicCore |0.2.0 | | | |
43-
|nofrills |0.1.0 | | | |
44-
|nonmemica |0.7.6 | |1 |1 |
45-
|NPMOD |0.1.0 |1 | | |
46-
|polypoly |0.0.2 | | | |
47-
|prisonbrief |0.1.0 | | |1 |
48-
|purrr |0.2.3 | | | |
49-
|recipes |0.1.0 | | | |
50-
|rsample |0.0.1 | | | |
51-
|RSDA |2.0.2 | | | |
52-
|seplyr |0.1.3 | | |1 |
53-
|sf |0.5-3 |1 | | |
54-
|sjmisc |2.6.0 | | | |
55-
|sjPlot |2.3.2 | | |2 |
56-
|sjstats |0.10.3 | | |1 |
57-
|sparklyr |0.6.1 |1 | | |
58-
|spdplyr |0.1.3 | | | |
59-
|statar |0.6.5 | | | |
60-
|stplanr |0.1.9 | |1 | |
61-
|sugrrants |0.1.0 | | | |
62-
|tatoo |1.0.7 | | | |
63-
|taxa |0.1.0 | | |1 |
64-
|tibble |1.3.3 | | | |
65-
|tidygraph |1.0.0 | | | |
66-
|tidyselect |0.1.1 | | |1 |
67-
|valr |0.3.1 | | | |
68-
|vdiffr |0.2.0 | | | |
41+
|package |version |error |warning |note |
42+
|:----------------------------------------|:-------|:------|:-------|:----|
43+
|auk |0.1.0 | | | |
44+
|[banR](problems.md#banr) |0.2.0 | |-1 |1 |
45+
|[bayesplot](problems.md#bayesplot) |1.4.0 | | |1 |
46+
|bioset |0.1.0 | | | |
47+
|[bomrang](problems.md#bomrang) |0.0.8 |1 | | |
48+
|[condformat](problems.md#condformat) |0.7.0 |1 | |1 |
49+
|cytominer |0.1.0 | | | |
50+
|[dbplyr](problems.md#dbplyr) |1.1.0 | | |1 |
51+
|[dexter](problems.md#dexter) |0.5.1 | | |1 |
52+
|DiagrammeR |0.9.2 | | | |
53+
|[dplyr](problems.md#dplyr) |0.7.4 | | |2 |
54+
|[epitable](problems.md#epitable) |0.1.2 | | |1 |
55+
|ESTER |0.1.0 | | | |
56+
|etl |0.3.7 | | | |
57+
|fbar |0.3.4 | | | |
58+
|fold |0.2.2 | | | |
59+
|ggeffects |0.2.2 | | | |
60+
|ggformula |0.6 | | | |
61+
|gghighlight |0.0.1 | | | |
62+
|googleAnalyticsR |0.4.2 | | | |
63+
|googledrive |0.1.1 | | | |
64+
|[GSODR](problems.md#gsodr) |1.1.0 |1 | |1 |
65+
|iadf |0.1.0 | | | |
66+
|[implyr](problems.md#implyr) |0.2.1 |1 | | |
67+
|[kokudosuuchi](problems.md#kokudosuuchi) |0.4.1 |1 | | |
68+
|later |0.5 | | | |
69+
|metaplot |0.2.1 | | | |
70+
|[MlBayesOpt](problems.md#mlbayesopt) |0.3.3 | | |1 |
71+
|mosaicCore |0.4.0 | | | |
72+
|mvMonitoring |0.1.0 | | | |
73+
|naniar |0.1.0 | | | |
74+
|nofrills |0.2.0 | | | |
75+
|[nonmemica](problems.md#nonmemica) |0.7.6 | |1 |1 |
76+
|NPMOD |0.1.0 | | | |
77+
|[nyctaxi](problems.md#nyctaxi) |0.0.1 | |1 | |
78+
|photobiology |0.9.17 | | | |
79+
|[PKPDmisc](problems.md#pkpdmisc) |2.0.0 | | |1 |
80+
|[pointblank](problems.md#pointblank) |0.1 |1 | | |
81+
|polypoly |0.0.2 | | | |
82+
|[poppr](problems.md#poppr) |2.5.0 |1 | | |
83+
|[prisonbrief](problems.md#prisonbrief) |0.1.0 |1 | | |
84+
|[proustr](problems.md#proustr) |0.2.1 | | |1 |
85+
|purrr |0.2.4 | | | |
86+
|[quickReg](problems.md#quickreg) |1.5.0 | | |2 |
87+
|recipes |0.1.0 | | | |
88+
|rsample |0.0.1 | | | |
89+
|RSDA |2.0.2 | | | |
90+
|[seplyr](problems.md#seplyr) |0.1.5 | | |1 |
91+
|[sf](problems.md#sf) |0.5-5 |1 | |1 |
92+
|sjmisc |2.6.2 | | | |
93+
|[sjPlot](problems.md#sjplot) |2.4.0 | | |2 |
94+
|[sjstats](problems.md#sjstats) |0.12.0 | | |1 |
95+
|[sparklyr](problems.md#sparklyr) |0.6.3 |1 | | |
96+
|spdplyr |0.1.3 | | | |
97+
|statar |0.6.5 | | | |
98+
|[stplanr](problems.md#stplanr) |0.1.9 |1 | | |
99+
|sugrrants |0.1.0 | | | |
100+
|[tatoo](problems.md#tatoo) |1.0.8 | | |1 |
101+
|[taxa](problems.md#taxa) |0.1.0 |__+2__ |__+1__ |1 |
102+
|tfruns |1.0 | | | |
103+
|tibble |1.3.4 | | | |
104+
|tibbletime |0.0.2 | | | |
105+
|tidyboot |0.1.0 | | | |
106+
|tidygraph |1.0.0 | | | |
107+
|[tidyr](problems.md#tidyr) |0.7.2 | | |1 |
108+
|tidyselect |0.2.2 | | | |
109+
|tidystringdist |0.1.0 | | | |
110+
|[tidytext](problems.md#tidytext) |0.1.4 | | |1 |
111+
|unjoin |0.0.3 | | | |
112+
|valr |0.3.1 | | | |
113+
|vdiffr |0.2.1 | | | |
114+
|VWPre |1.0.0 | | | |
69115

revdep/data.sqlite

600 KB
Binary file not shown.

0 commit comments

Comments
 (0)