diff --git a/DESCRIPTION b/DESCRIPTION index 414f298..9986115 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,20 +1,20 @@ Package: tidyjson -Title: Tidy Complex JSON -Version: 0.2.3.9001 +Title: Tidy Complex 'JSON' +Version: 0.2.4.9000 Authors@R: c( person("Jeremy","Stanley",,"jeremy.stanley@gmail.com",c("aut")), person("Cole","Arendt",, "cole@rstudio.com",c("aut", "cre")) ) -Description: Turn complex JSON data into tidy data frames. +Description: Turn complex 'JSON' data into tidy data frames. Depends: R (>= 3.1.0) Imports: assertthat, jsonlite, purrr, - dplyr (>= 0.7.0), + dplyr (>= 0.8.3), magrittr, - tidyr (>= 0.7.0), + tidyr (>= 1.0.0), tibble License: MIT + file LICENSE LazyData: true diff --git a/NEWS.md b/NEWS.md index 1fec592..13515dd 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# tidyjson dev +# tidyjson 0.2.4 ## New functions @@ -12,6 +12,8 @@ ## Bug fixes and minor changes +* Improve compatibility with newer `dplyr` and `tidyr` + * `DROP=TRUE` caused an error. Altered behavior to be consistent with `tbl_df` * Fix `spread_all(recursive=FALSE)` bug that caused an error (#65) @@ -25,7 +27,7 @@ * Fix json_structure() failure if `document.id` missing by imputing the missing `document.id`. (#86) -# tidyjson 0.2.1.9000 +# tidyjson 0.2.2 ## New functions diff --git a/README.md b/README.md index 5e04453..123df28 100644 --- a/README.md +++ b/README.md @@ -11,17 +11,15 @@ Status](https://ci.appveyor.com/api/projects/status/github/colearendt/tidyjson?b [![Coverage Status](https://codecov.io/github/colearendt/tidyjson/coverage.svg?branch=master)](https://codecov.io/github/colearendt/tidyjson?branch=master) [![CRAN -Activity](http://cranlogs.r-pkg.org/badges/tidyjson)](https://cran.r-project.org/web/packages/tidyjson/index.html) +Activity](http://cranlogs.r-pkg.org/badges/tidyjson)](https://CRAN.R-project.org/package=tidyjson) [![CRAN -History](http://cranlogs.r-pkg.org/badges/grand-total/tidyjson)](https://cran.r-project.org/web/packages/tidyjson/index.html) +History](http://cranlogs.r-pkg.org/badges/grand-total/tidyjson)](https://CRAN.R-project.org/package=tidyjson) ![tidyjson graphs](https://cloud.githubusercontent.com/assets/2284427/18217882/1b3b2db4-7114-11e6-8ba3-07938f1db9af.png) -tidyjson provides tools for turning complex [json](http://www.json.org/) -into -[tidy](https://cran.r-project.org/web/packages/tidyr/vignettes/tidy-data.html) -data. +tidyjson provides tools for turning complex [json](http://www.json.org/) into +tidy data. Installation ------------