Skip to content

Commit

Permalink
Prepare for CRAN release
Browse files Browse the repository at this point in the history
  • Loading branch information
Ian Cook committed May 9, 2020
1 parent 2d9147c commit 380e63a
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 22 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: tidyquery
Type: Package
Title: Query 'R' Data Frames with 'SQL'
Version: 0.2.0.9000
Version: 0.2.1
Authors@R: c(
person("Ian", "Cook", email = "ian@cloudera.com", role = c("aut", "cre")),
person(family = "Cloudera", role = c("cph"))
Expand Down
4 changes: 2 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# tidyquery (development version)
# tidyquery 0.2.1

* Works when `FROM` clause refers to data frame in non-global environment ([#12](https://github.com/ianmcook/tidyquery/issues/12))
* Minor changes to support dplyr 1.0
* Minor changes to support dplyr 1.0.0
* Minor bugfixes and improvements

# tidyquery 0.2.0
Expand Down
7 changes: 0 additions & 7 deletions README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,6 @@ knitr::opts_chunk$set(
```
# tidyquery <img src="man/figures/logo.png" align="right" width="120" />

<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/tidyquery)](https://cran.r-project.org/package=tidyquery)
[![Travis build status](https://travis-ci.org/ianmcook/tidyquery.svg?branch=master)](https://travis-ci.org/ianmcook/tidyquery)
[![AppVeyor build status](https://ci.appveyor.com/api/projects/status/github/ianmcook/tidyquery?branch=master&svg=true)](https://ci.appveyor.com/project/ianmcook/tidyquery)
[![Codecov test coverage](https://codecov.io/gh/ianmcook/tidyquery/branch/master/graph/badge.svg)](https://codecov.io/gh/ianmcook/tidyquery?branch=master)
<!-- badges: end -->

**tidyquery** runs SQL queries on R data frames.

It uses [queryparser](https://github.com/ianmcook/queryparser) to translate SQL queries into R expressions, then it uses [dplyr](https://dplyr.tidyverse.org) to evaluate these expressions and return results. **tidyquery** does not load data frames into a database; it queries them in place.
Expand Down
12 changes: 0 additions & 12 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,6 @@

# tidyquery <img src="man/figures/logo.png" align="right" width="120" />

<!-- badges: start -->

[![CRAN
status](https://www.r-pkg.org/badges/version/tidyquery)](https://cran.r-project.org/package=tidyquery)
[![Travis build
status](https://travis-ci.org/ianmcook/tidyquery.svg?branch=master)](https://travis-ci.org/ianmcook/tidyquery)
[![AppVeyor build
status](https://ci.appveyor.com/api/projects/status/github/ianmcook/tidyquery?branch=master&svg=true)](https://ci.appveyor.com/project/ianmcook/tidyquery)
[![Codecov test
coverage](https://codecov.io/gh/ianmcook/tidyquery/branch/master/graph/badge.svg)](https://codecov.io/gh/ianmcook/tidyquery?branch=master)
<!-- badges: end -->

**tidyquery** runs SQL queries on R data frames.

It uses [queryparser](https://github.com/ianmcook/queryparser) to
Expand Down

0 comments on commit 380e63a

Please sign in to comment.