Skip to content

Commit a20e3e7

Browse files
authored
Merge pull request #28
Release v0.1.0
2 parents d041555 + 538ae1d commit a20e3e7

File tree

13 files changed

+268
-12
lines changed

13 files changed

+268
-12
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# uptasticsearch
22

3-
[![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)
3+
[![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)
44

55
## Introduction
66

r-pkg/DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: uptasticsearch
22
Type: Package
33
Title: Get Data Frame Representations of 'Elasticsearch' Results
4-
Version: 0.0.2.9999
4+
Version: 0.1.0.9999
55
Authors@R: c(
66
person("James", "Lamb", email = "[email protected]", role = c("aut", "cre")),
77
person("Nick", "Paras", email = "[email protected]", role = c("aut")),

r-pkg/NEWS.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,21 @@
22

33
## Features
44

5+
### Elasticsearch metadata
6+
- `get_fields` returns a data.table with the names and types of all indexed fields across one or more indices
7+
8+
### Routing Temporary File Writing
9+
- `es_search` now accepts an `intermediates_dir` parameter, giving users control over the directory used for temporary I/O at query time
10+
11+
## Bugfixes
12+
13+
### Empty Results
14+
- Added logic to short-circuit and return early with an informative message if a query matches 0 documents
15+
16+
# uptasticsearch 0.0.2
17+
18+
## Features
19+
520
### Main function
621
- `es_search` executes an ES query and gets a data.table
722

r-pkg/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# uptasticsearch
22

3-
[![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)
3+
[![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)
44

55
## Introduction
66

r-pkg/_pkgdown.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ reference:
1111
- starts_with("chomp_")
1212
- title: Utilities
1313
contents:
14+
- get_fields
1415
- unpack_nested_data
1516
- parse_date_time
1617
- title: Exploratory functions

r-pkg/cran-comments.md

Lines changed: 43 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,46 @@
2626
## v0.0.2 - Submission 3 - (July 18, 2017)
2727

2828
### CRAN Response
29-
* No lingering issues. v0.0.2 released to CRAN!
29+
* No lingering issues. v0.0.2 released to CRAN!
30+
31+
## v0.1.0 - Submission 1 - (August 28, 2017)
32+
33+
### R CMD check results
34+
* No issues
35+
36+
### CRAN Response
37+
* Need to use CRAN canonical form (http://cran.r-project.org/package=uptasticsearch)
38+
39+
## v0.1.0 - Submission 2 - (August 28, 2017)
40+
41+
### R CMD check results
42+
* No issues
43+
44+
### CRAN Response
45+
* CRAN canonical form uses HTTPS (https://cran.r-project.org/package=uptasticsearch)
46+
47+
## v0.1.0 - Submission 3 - (August 29, 2017)
48+
49+
### R CMD check results
50+
* No issues
51+
52+
### CRAN Response
53+
* CRAN URLs are still missing HTTPS (submitter error)
54+
55+
## v0.1.0 - Submission 4 - (August 29, 2017)
56+
57+
### R CMD check results
58+
* No issues
59+
60+
### CRAN Response
61+
* Still missing HTTPS in CRAN URLs (we'd been editing the README at the repo root, not the one built with the package)
62+
* Reviewers asked if examples in "\dontrun" could be run instead
63+
64+
## v0.1.0 - Submission 5 - (August 29, 2017)
65+
66+
### R CMD check results
67+
* No issues
68+
69+
### CRAN Response
70+
* No lingering issues. v0.0.2 released to CRAN!
71+

r-pkg/docs/authors.html

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

r-pkg/docs/index.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

r-pkg/docs/news/index.html

Lines changed: 36 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

r-pkg/docs/reference/chomp_hits.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

r-pkg/docs/reference/get_fields.html

Lines changed: 152 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

r-pkg/docs/reference/index.html

Lines changed: 7 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

r-pkg/docs/reference/unpack_nested_data.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)