diff --git a/DESCRIPTION b/DESCRIPTION index 4b9d5b1..4d6b96c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -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")) diff --git a/NEWS.md b/NEWS.md index 1084ebe..242772c 100644 --- a/NEWS.md +++ b/NEWS.md @@ -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 diff --git a/README.Rmd b/README.Rmd index 140f1d7..0d4a400 100644 --- a/README.Rmd +++ b/README.Rmd @@ -14,13 +14,6 @@ knitr::opts_chunk$set( ``` # tidyquery - -[![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) - - **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. diff --git a/README.md b/README.md index fde64fb..ee85d40 100644 --- a/README.md +++ b/README.md @@ -3,18 +3,6 @@ # tidyquery - - -[![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) - - **tidyquery** runs SQL queries on R data frames. It uses [queryparser](https://github.com/ianmcook/queryparser) to