diff --git a/DESCRIPTION b/DESCRIPTION index 3de86ce..0a507eb 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -4,7 +4,7 @@ Description: Client for 'jq', a 'JSON' processor ( written in C. 'jq' allows the following with 'JSON' data: index into, parse, do calculations, cut up and filter, change key names and values, perform conditionals and comparisons, and more. -Version: 1.3.3 +Version: 1.3.4 Depends: R (>= 3.1.2) License: MIT + file LICENSE @@ -24,4 +24,4 @@ Imports: Suggests: jsonlite, testthat -RoxygenNote: 7.2.3 +RoxygenNote: 7.3.2.9000 diff --git a/NEWS.md b/NEWS.md index 8bd84c8..cecf9ca 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,8 @@ +jqr 1.3.4 +========= + +* Remove problematic link anchor + jqr 1.3.3 ========= diff --git a/R/manip.R b/R/manip.R index 4ab8d68..beb4d91 100644 --- a/R/manip.R +++ b/R/manip.R @@ -3,7 +3,6 @@ #' @name manip #' @template args #' @export -#' @seealso \code{\link{add}} #' @examples #' # join #' str <- '["a","b,c,d","e"]' diff --git a/README.Rmd b/README.Rmd index 4906119..935dd2c 100644 --- a/README.Rmd +++ b/README.Rmd @@ -12,7 +12,7 @@ knitr::opts_chunk$set( [![R-CMD-check](https://github.com/ropensci/jqr/workflows/R-CMD-check/badge.svg)](https://github.com/ropensci/jqr/actions?query=workflow%3AR-CMD-check) -[![codecov](http://app.codecov.io/gh/ropensci/jqr/branch/master/graph/badge.svg)](http://app.codecov.io/gh/ropensci/jqr) +[![codecov](https://app.codecov.io/gh/ropensci/jqr/branch/master/graph/badge.svg)](https://app.codecov.io/gh/ropensci/jqr) [![cran checks](https://cranchecks.info/badges/worst/jqr)](https://cranchecks.info/pkgs/jqr) [![rstudio mirror downloads](https://cranlogs.r-pkg.org/badges/jqr?color=0DA6CD)](https://github.com/r-hub/cranlogs.app) [![cran version](https://www.r-pkg.org/badges/version/jqr)](https://cran.r-project.org/package=jqr) diff --git a/README.md b/README.md index 089200d..afc85de 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ jqr [![R-CMD-check](https://github.com/ropensci/jqr/workflows/R-CMD-check/badge.svg)](https://github.com/ropensci/jqr/actions?query=workflow%3AR-CMD-check) -[![codecov](http://app.codecov.io/gh/ropensci/jqr/branch/master/graph/badge.svg)](http://app.codecov.io/gh/ropensci/jqr) +[![codecov](https://app.codecov.io/gh/ropensci/jqr/branch/master/graph/badge.svg)](https://app.codecov.io/gh/ropensci/jqr) [![cran checks](https://cranchecks.info/badges/worst/jqr)](https://cranchecks.info/pkgs/jqr) [![rstudio mirror downloads](https://cranlogs.r-pkg.org/badges/jqr?color=0DA6CD)](https://github.com/r-hub/cranlogs.app) [![cran version](https://www.r-pkg.org/badges/version/jqr)](https://cran.r-project.org/package=jqr) diff --git a/man/jqr.Rd b/man/jqr.Rd index 98e18bb..0b9e6c5 100644 --- a/man/jqr.Rd +++ b/man/jqr.Rd @@ -63,3 +63,23 @@ with the high level DSL to get back a character string instead of pretty printed version } +\seealso{ +Useful links: +\itemize{ + \item \url{https://docs.ropensci.org/jqr/ (docs)} + \item \url{https://github.com/ropensci/jqr (devel)} + \item Report bugs at \url{https://github.com/ropensci/jqr/issues} +} + +} +\author{ +\strong{Maintainer}: Jeroen Ooms \email{jeroen@berkeley.edu} + +Authors: +\itemize{ + \item Rich FitzJohn \email{rich.fitzjohn@gmail.com} + \item Scott Chamberlain \email{myrmecocystus@gmail.com} + \item Stefan Milton Bache \email{stefan@stefanbache.dk} +} + +} diff --git a/man/manip.Rd b/man/manip.Rd index 5a76864..8a630f9 100644 --- a/man/manip.Rd +++ b/man/manip.Rd @@ -174,6 +174,3 @@ x <- '[{"foo":1, "bar":10}, {"foo":3, "bar":100}, {"foo":1, "bar":1}]' x \%>\% group(foo) x \%>\% group_("foo") } -\seealso{ -\code{\link{add}} -}