Skip to content

Commit

Permalink
Prepare 0.2.5 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lionel- committed Oct 11, 2018
1 parent 7d44f7a commit 985a526
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 7 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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", ,"[email protected]", c("aut", "cre")),
person("Hadley", "Wickham", ,"[email protected]", "aut"),
Expand Down
8 changes: 5 additions & 3 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -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.
Expand Down Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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.

0 comments on commit 985a526

Please sign in to comment.