Skip to content

Commit

Permalink
Merge pull request #28
Browse files Browse the repository at this point in the history
Release v0.1.0
  • Loading branch information
jameslamb authored Aug 31, 2017
2 parents d041555 + 538ae1d commit a20e3e7
Show file tree
Hide file tree
Showing 13 changed files with 268 additions and 12 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# uptasticsearch

[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version-last-release/uptasticsearch)](http://cran.r-project.org/package=uptasticsearch) [![CRAN\_Download\_Badge](http://cranlogs.r-pkg.org/badges/grand-total/uptasticsearch)](http://cran.rstudio.com/web/packages/uptasticsearch/index.html)
[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version-last-release/uptasticsearch)](https://cran.r-project.org/package=uptasticsearch) [![CRAN\_Download\_Badge](https://cranlogs.r-pkg.org/badges/grand-total/uptasticsearch)](https://cran.r-project.org/package=uptasticsearch)

## Introduction

Expand Down
2 changes: 1 addition & 1 deletion r-pkg/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Package: uptasticsearch
Type: Package
Title: Get Data Frame Representations of 'Elasticsearch' Results
Version: 0.0.2.9999
Version: 0.1.0.9999
Authors@R: c(
person("James", "Lamb", email = "[email protected]", role = c("aut", "cre")),
person("Nick", "Paras", email = "[email protected]", role = c("aut")),
Expand Down
15 changes: 15 additions & 0 deletions r-pkg/NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,21 @@

## Features

### Elasticsearch metadata
- `get_fields` returns a data.table with the names and types of all indexed fields across one or more indices

### Routing Temporary File Writing
- `es_search` now accepts an `intermediates_dir` parameter, giving users control over the directory used for temporary I/O at query time

## Bugfixes

### Empty Results
- Added logic to short-circuit and return early with an informative message if a query matches 0 documents

# uptasticsearch 0.0.2

## Features

### Main function
- `es_search` executes an ES query and gets a data.table

Expand Down
2 changes: 1 addition & 1 deletion r-pkg/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# uptasticsearch

[![CRAN\_Status\_Badge](http://www.r-pkg.org/badges/version-last-release/uptasticsearch)](http://cran.r-project.org/package=uptasticsearch) [![CRAN\_Download\_Badge](http://cranlogs.r-pkg.org/badges/grand-total/uptasticsearch)](http://cran.rstudio.com/web/packages/uptasticsearch/index.html)
[![CRAN\_Status\_Badge](https://www.r-pkg.org/badges/version-last-release/uptasticsearch)](https://cran.r-project.org/package=uptasticsearch) [![CRAN\_Download\_Badge](https://cranlogs.r-pkg.org/badges/grand-total/uptasticsearch)](https://cran.r-project.org/package=uptasticsearch)

## Introduction

Expand Down
1 change: 1 addition & 0 deletions r-pkg/_pkgdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ reference:
- starts_with("chomp_")
- title: Utilities
contents:
- get_fields
- unpack_nested_data
- parse_date_time
- title: Exploratory functions
Expand Down
44 changes: 43 additions & 1 deletion r-pkg/cran-comments.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,46 @@
## v0.0.2 - Submission 3 - (July 18, 2017)

### CRAN Response
* No lingering issues. v0.0.2 released to CRAN!
* No lingering issues. v0.0.2 released to CRAN!

## v0.1.0 - Submission 1 - (August 28, 2017)

### R CMD check results
* No issues

### CRAN Response
* Need to use CRAN canonical form (http://cran.r-project.org/package=uptasticsearch)

## v0.1.0 - Submission 2 - (August 28, 2017)

### R CMD check results
* No issues

### CRAN Response
* CRAN canonical form uses HTTPS (https://cran.r-project.org/package=uptasticsearch)

## v0.1.0 - Submission 3 - (August 29, 2017)

### R CMD check results
* No issues

### CRAN Response
* CRAN URLs are still missing HTTPS (submitter error)

## v0.1.0 - Submission 4 - (August 29, 2017)

### R CMD check results
* No issues

### CRAN Response
* Still missing HTTPS in CRAN URLs (we'd been editing the README at the repo root, not the one built with the package)
* Reviewers asked if examples in "\dontrun" could be run instead

## v0.1.0 - Submission 5 - (August 29, 2017)

### R CMD check results
* No issues

### CRAN Response
* No lingering issues. v0.0.2 released to CRAN!

6 changes: 5 additions & 1 deletion r-pkg/docs/authors.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions r-pkg/docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

36 changes: 36 additions & 0 deletions r-pkg/docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions r-pkg/docs/reference/chomp_hits.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

152 changes: 152 additions & 0 deletions r-pkg/docs/reference/get_fields.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion r-pkg/docs/reference/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions r-pkg/docs/reference/unpack_nested_data.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit a20e3e7

Please sign in to comment.