Skip to content
This repository was archived by the owner on Sep 9, 2022. It is now read-only.

Commit 35693d0

Browse files
committed
update codemeta file, bump to dev version, update cran comments, and news
1 parent 088720a commit 35693d0

File tree

5 files changed

+88
-52
lines changed

5 files changed

+88
-52
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Description: Provides a set of functions for querying and parsing data
55
remote), including search, 'faceting', 'highlighting', 'stats', and
66
'more like this'. In addition, some functionality is included for
77
creating, deleting, and updating documents in a 'Solr' 'database'.
8-
Version: 1.0.1.9900
8+
Version: 1.0.2
99
Authors@R: person("Scott", "Chamberlain", role = c("aut", "cre"),
1010
email = "myrmecocystus@gmail.com",
1111
comment = c(ORCID="0000-0003-1444-9135"))

NEWS.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
solrium 1.0.2
2+
=============
3+
4+
### NEW FEATURES
5+
6+
* the major search methods on `SolrClient` and their function equivalents gain parameter `progress` that supports for now only `httr::progress()` (#115)
7+
* gains new method `$json_request()` on `SolrClient` and new function `solr_json_request()` for working with the JSON request API (#117)
8+
9+
### MINOR IMPROVEMENTS
10+
11+
* now returning `responseHeader` and `nextCursorMark` when available as attributes on the returned object (#114)
12+
* fixes for upcoming version of `tibble` (#116)
13+
14+
115
solrium 1.0.0
216
=============
317

codemeta.json

Lines changed: 66 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,20 +1,23 @@
11
{
2-
"@context": ["http://purl.org/codemeta/2.0", "http://schema.org"],
2+
"@context": [
3+
"http://purl.org/codemeta/2.0",
4+
"http://schema.org"
5+
],
36
"@type": "SoftwareSourceCode",
47
"identifier": "solrium",
58
"description": "Provides a set of functions for querying and parsing data\n from 'Solr' (<http://lucene.apache.org/solr>) 'endpoints' (local and\n remote), including search, 'faceting', 'highlighting', 'stats', and\n 'more like this'. In addition, some functionality is included for\n creating, deleting, and updating documents in a 'Solr' 'database'.",
69
"name": "solrium: General Purpose R Interface to 'Solr'",
710
"codeRepository": "https://github.com/ropensci/solrium",
811
"issueTracker": "https://github.com/ropensci/solrium/issues",
912
"license": "https://spdx.org/licenses/MIT",
10-
"version": "1.0.0.9100",
13+
"version": "1.0.2",
1114
"programmingLanguage": {
1215
"@type": "ComputerLanguage",
1316
"name": "R",
14-
"version": "3.4.3",
17+
"version": "3.5.1",
1518
"url": "https://r-project.org"
1619
},
17-
"runtimePlatform": "R version 3.4.3 Patched (2018-01-01 r74017)",
20+
"runtimePlatform": "R version 3.5.1 Patched (2018-11-18 r75627)",
1821
"provider": {
1922
"@id": "https://cran.r-project.org",
2023
"@type": "Organization",
@@ -26,27 +29,32 @@
2629
"@type": "Person",
2730
"givenName": "Scott",
2831
"familyName": "Chamberlain",
29-
"email": "myrmecocystus@gmail.com"
32+
"email": "myrmecocystus@gmail.com",
33+
"@id": "https://orcid.org/0000-0003-1444-9135"
34+
}
35+
],
36+
"maintainer": [
37+
{
38+
"@type": "Person",
39+
"givenName": "Scott",
40+
"familyName": "Chamberlain",
41+
"email": "myrmecocystus@gmail.com",
42+
"@id": "https://orcid.org/0000-0003-1444-9135"
3043
}
3144
],
32-
"maintainer": {
33-
"@type": "Person",
34-
"givenName": "Scott",
35-
"familyName": "Chamberlain",
36-
"email": "myrmecocystus@gmail.com"
37-
},
3845
"softwareSuggestions": [
3946
{
4047
"@type": "SoftwareApplication",
4148
"identifier": "roxygen2",
4249
"name": "roxygen2",
43-
"version": "6.0.1",
50+
"version": ">= 6.0.1",
4451
"provider": {
4552
"@id": "https://cran.r-project.org",
4653
"@type": "Organization",
47-
"name": "Central R Archive Network (CRAN)",
54+
"name": "Comprehensive R Archive Network (CRAN)",
4855
"url": "https://cran.r-project.org"
49-
}
56+
},
57+
"sameAs": "https://CRAN.R-project.org/package=roxygen2"
5058
},
5159
{
5260
"@type": "SoftwareApplication",
@@ -55,9 +63,10 @@
5563
"provider": {
5664
"@id": "https://cran.r-project.org",
5765
"@type": "Organization",
58-
"name": "Central R Archive Network (CRAN)",
66+
"name": "Comprehensive R Archive Network (CRAN)",
5967
"url": "https://cran.r-project.org"
60-
}
68+
},
69+
"sameAs": "https://CRAN.R-project.org/package=testthat"
6170
},
6271
{
6372
"@type": "SoftwareApplication",
@@ -66,9 +75,10 @@
6675
"provider": {
6776
"@id": "https://cran.r-project.org",
6877
"@type": "Organization",
69-
"name": "Central R Archive Network (CRAN)",
78+
"name": "Comprehensive R Archive Network (CRAN)",
7079
"url": "https://cran.r-project.org"
71-
}
80+
},
81+
"sameAs": "https://CRAN.R-project.org/package=knitr"
7282
}
7383
],
7484
"softwareRequirements": [
@@ -81,73 +91,79 @@
8191
"@type": "SoftwareApplication",
8292
"identifier": "dplyr",
8393
"name": "dplyr",
84-
"version": "0.5.0",
94+
"version": ">= 0.5.0",
8595
"provider": {
8696
"@id": "https://cran.r-project.org",
8797
"@type": "Organization",
88-
"name": "Central R Archive Network (CRAN)",
98+
"name": "Comprehensive R Archive Network (CRAN)",
8999
"url": "https://cran.r-project.org"
90-
}
100+
},
101+
"sameAs": "https://CRAN.R-project.org/package=dplyr"
91102
},
92103
{
93104
"@type": "SoftwareApplication",
94105
"identifier": "plyr",
95106
"name": "plyr",
96-
"version": "1.8.4",
107+
"version": ">= 1.8.4",
97108
"provider": {
98109
"@id": "https://cran.r-project.org",
99110
"@type": "Organization",
100-
"name": "Central R Archive Network (CRAN)",
111+
"name": "Comprehensive R Archive Network (CRAN)",
101112
"url": "https://cran.r-project.org"
102-
}
113+
},
114+
"sameAs": "https://CRAN.R-project.org/package=plyr"
103115
},
104116
{
105117
"@type": "SoftwareApplication",
106118
"identifier": "crul",
107119
"name": "crul",
108-
"version": "0.4.0",
120+
"version": ">= 0.4.0",
109121
"provider": {
110122
"@id": "https://cran.r-project.org",
111123
"@type": "Organization",
112-
"name": "Central R Archive Network (CRAN)",
124+
"name": "Comprehensive R Archive Network (CRAN)",
113125
"url": "https://cran.r-project.org"
114-
}
126+
},
127+
"sameAs": "https://CRAN.R-project.org/package=crul"
115128
},
116129
{
117130
"@type": "SoftwareApplication",
118131
"identifier": "xml2",
119132
"name": "xml2",
120-
"version": "1.0.0",
133+
"version": ">= 1.0.0",
121134
"provider": {
122135
"@id": "https://cran.r-project.org",
123136
"@type": "Organization",
124-
"name": "Central R Archive Network (CRAN)",
137+
"name": "Comprehensive R Archive Network (CRAN)",
125138
"url": "https://cran.r-project.org"
126-
}
139+
},
140+
"sameAs": "https://CRAN.R-project.org/package=xml2"
127141
},
128142
{
129143
"@type": "SoftwareApplication",
130144
"identifier": "jsonlite",
131145
"name": "jsonlite",
132-
"version": "1.0",
146+
"version": ">= 1.0",
133147
"provider": {
134148
"@id": "https://cran.r-project.org",
135149
"@type": "Organization",
136-
"name": "Central R Archive Network (CRAN)",
150+
"name": "Comprehensive R Archive Network (CRAN)",
137151
"url": "https://cran.r-project.org"
138-
}
152+
},
153+
"sameAs": "https://CRAN.R-project.org/package=jsonlite"
139154
},
140155
{
141156
"@type": "SoftwareApplication",
142157
"identifier": "tibble",
143158
"name": "tibble",
144-
"version": "1.2",
159+
"version": ">= 1.4.2",
145160
"provider": {
146161
"@id": "https://cran.r-project.org",
147162
"@type": "Organization",
148-
"name": "Central R Archive Network (CRAN)",
163+
"name": "Comprehensive R Archive Network (CRAN)",
149164
"url": "https://cran.r-project.org"
150-
}
165+
},
166+
"sameAs": "https://CRAN.R-project.org/package=tibble"
151167
},
152168
{
153169
"@type": "SoftwareApplication",
@@ -156,13 +172,24 @@
156172
"provider": {
157173
"@id": "https://cran.r-project.org",
158174
"@type": "Organization",
159-
"name": "Central R Archive Network (CRAN)",
175+
"name": "Comprehensive R Archive Network (CRAN)",
160176
"url": "https://cran.r-project.org"
161-
}
177+
},
178+
"sameAs": "https://CRAN.R-project.org/package=R6"
162179
}
163180
],
164181
"contIntegration": "https://travis-ci.org/ropensci/solrium",
165182
"releaseNotes": "https://github.com/ropensci/solrium/blob/master/NEWS.md",
166183
"readme": "https://github.com/ropensci/solrium/blob/master/README.md",
167-
"fileSize": "115.93KB"
184+
"fileSize": "120KB",
185+
"developmentStatus": "https://www.repostatus.org/#active",
186+
"keywords": [
187+
"solr",
188+
"solr-client",
189+
"solr-search",
190+
"rstats",
191+
"database",
192+
"r",
193+
"r-package"
194+
]
168195
}

cran-comments.md

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
## Test environments
22

3-
* local OS X install, R 3.4.2 patched
4-
* ubuntu 12.04 (on travis-ci), R 3.4.2
3+
* local OS X install, R 3.5.1 patched
4+
* ubuntu 14.04 (on travis-ci), R 3.5.1
55
* win-builder (devel and release)
66

77
## R CMD check results
@@ -11,18 +11,17 @@
1111
License components with restrictions and base license permitting such:
1212
MIT + file LICENSE
1313
File 'LICENSE':
14-
YEAR: 2017
14+
YEAR: 2018
1515
COPYRIGHT HOLDER: Scott Chamberlain
1616

1717
## Reverse dependencies
1818

19-
* I have run R CMD check on the 2 downstream dependencies.
20-
(Summary at <https://github.com/ropensci/solrium/blob/master/revdep/README.md>),
21-
with no problems caused.
19+
* I have run R CMD check on the 4 downstream dependencies.
20+
(Summary at <https://github.com/ropensci/solrium/blob/master/revdep/README.md>), with no problems caused.
2221

2322
-----
2423

25-
This release includes a lot of big changes, and thus bumped to v1.
24+
This release includes a fix for an upcoming version of the tibble package and a few small features.
2625

2726
Thanks!
2827
Scott Chamberlain

revdep/check.R

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1 @@
1-
library("devtools")
2-
3-
res <- revdep_check(threads = 4)
4-
revdep_check_save_summary()
5-
revdep_check_print_problems()
1+
revdepcheck::revdep_check(threads = 4)

0 commit comments

Comments
 (0)