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 Jan 20, 2020
1 parent 66d3971 commit ae727da
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 21 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.1.0.9004
Version: 0.2.0
Authors@R: c(
person("Ian", "Cook", email = "[email protected]", role = c("aut", "cre")),
person(family = "Cloudera", role = c("cph"))
Expand Down
2 changes: 1 addition & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# tidyquery (development version)
# tidyquery 0.2.0

* Works with the [dtplyr](https://dtplyr.tidyverse.org/) package (a [data.table](http://r-datatable.com/) backend for dplyr) ([#6](https://github.com/ianmcook/tidyquery/issues/6))
* Accepts two-table joins that use SQL-92-style (explicit) join syntax ([#7](https://github.com/ianmcook/tidyquery/issues/7))
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 ae727da

Please sign in to comment.