diff --git a/DESCRIPTION b/DESCRIPTION index e5b243a0..11e6fcf3 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: tidyselect Title: Select from a Set of Strings -Version: 0.2.4.9000 +Version: 0.2.5 Authors@R: c( person("Lionel", "Henry", ,"lionel@rstudio.com", c("aut", "cre")), person("Hadley", "Wickham", ,"hadley@rstudio.com", "aut"), diff --git a/NEWS.md b/NEWS.md index 3795acea..2f17231e 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,5 +1,7 @@ -# tidyselect 0.2.4.9000 +# tidyselect 0.2.5 + +This is a maintenance release for compatibility with rlang 0.3.0. # tidyselect 0.2.4 @@ -33,7 +35,7 @@ ```{r} vars <- c("cyl", "am", "disp", "drat") - vars_select(names(mtcars), - (!! vars)) + vars_select(names(mtcars), - !!vars) ``` * `last_col()` now issues an error when the variable vector is empty. @@ -106,7 +108,7 @@ vars_select(names(mtcars), .data$cyl : .data$drat) custom range: `vars_select(vars, 3:last_col())`. * `:` and `-` now handle strings as well. This makes it easy to - unquote a column name: `(!! name) : last_col()` or `-(!! name)`. + unquote a column name: `(!!name) : last_col()` or `- !!name`. * `vars_select()` gains a `.strict` argument similar to `rename_vars()`. If set to `FALSE`, errors about unknown variables diff --git a/cran-comments.md b/cran-comments.md index 458ee316..8818307f 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,9 +1,9 @@ ## Test environments -* local OS X install, R 3.4.3 +* local OS X install, R 3.5.1 * ubuntu 12.04 (on travis-ci, R devel and R release) -* Windows (on R-hub and Win-Builder) +* Windows (on Win-Builder) ## R CMD check results @@ -13,5 +13,5 @@ ## Reverse dependencies -I have checked the 20 projects that depend on tidyselect. I couldn't +I have checked the 29 packages that depend on tidyselect. I couldn't install 1 package (sf). There were no problems for all other packages.