Skip to content

Commit ad68cc8

Browse files
committed
Update tests and docs
1 parent 056c98c commit ad68cc8

File tree

5 files changed

+15
-24
lines changed

5 files changed

+15
-24
lines changed

DESCRIPTION

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: isoWater
22
Type: Package
33
Title: Discovery, Retrieval, and Analysis of Water Isotope Data
4-
Version: 1.0.0
4+
Version: 1.0.1
55
Authors@R: person("Gabe", "Bowen", email = "gabe.bowen@utah.edu",
66
role = c("aut", "cre"))
77
Maintainer: Gabe Bowen <gabe.bowen@utah.edu>
@@ -19,7 +19,8 @@ Suggests:
1919
knitr,
2020
rmarkdown,
2121
testthat (>= 3.0.0),
22-
covr
22+
covr,
23+
curl
2324
VignetteBuilder: knitr
2425
License: GPL-3
2526
Language: en-US

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# isoWater news
22

3+
## isoWater 1.0.1
4+
* Bug fixes
5+
36
## isoWater 1.0.0
47
* First CRAN release
58
* Bug fixes

cran-comments.md

Lines changed: 7 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
1+
## Version 1.0.1
2+
Fixes to ensure that network errors do not trigger check or test warnings/errors.
3+
14
## Test environments
25
* local Windows 10 x64, R 4.0.5
36
* Ubuntu 18.04 (on GitHub Actions), R 4.1
47
* Ubuntu 18.04 (on GitHub Actions), R 3.6
5-
* Ubuntu 18.04 (on GitHub Actions), r80460
8+
* Ubuntu 18.04 (on GitHub Actions), r80639
69
* Mac OS X 10.15.7 (on GitHub Actions), R 4.1.0
710
* Windows x64, i386 (on win-builder), R 4.1.0
811

@@ -11,27 +14,11 @@ No ERRORs, or WARNINGs
1114

1215
1 NOTE (on win-builder only):
1316

14-
New submission
15-
16-
Possibly mis-spelled words in DESCRIPTION:
17-
al (12:27)
18-
et (12:24)
19-
wiDB (7:14, 8:9)
17+
Days since last update: 4
2018

2119
Uses the non-portable package: 'R2WinBUGS'
2220

23-
This is the first CRAN submission of this package. All spelling has been
24-
verified. The final entry relates to a dependent package, see revision comment below.
21+
This update addresses a concern identified during CRAN checking. The final entry relates to a dependent package and has been acknowledged and cleared in previous submissions.
2522

2623
## Downstream dependencies
27-
There are currently no downstream dependencies for this package
28-
29-
## Revision comments
30-
The contents of this resubmission are unchanged. After our previous resubmission we were asked if we could remove the dependency on R2WinBUGS. I replied, explaining the reason for including this dependency and the nature of our use of the package, as was told that this should be OK. However, processing of the package never resumed. I'm resubmitting in hopes of restarting the process.
31-
32-
Changes in the previous resubmission:
33-
* Added () to function references in DESCRIPTION.
34-
* Added url for API protocol in DESCRIPTION.
35-
* Checked all Rd files for missing \value tags: the referenced file is the master man page for the package, and does not represent an exported method.
36-
* Checked all functions for modification of options, par, and working directory. Protected one instance of modified par setting by adding an immediate call to on.exit().
37-
* Checked all examples and vignettes for code modifying par settings. Fixed four instances in the vignette to either eliminate the modification or restore user settings.
24+
There are currently no downstream dependencies for this package

tests/testthat.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
library(testthat)
2-
library(httr)
2+
library(curl)
33
library(isoWater)
44

55
test_check("isoWater")

tests/testthat/test-wiDB.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
if(curl::has_internet()){
1+
if(has_internet()){
22
p = wiDB_values("projects")
33

44
if(!is.null(p)){

0 commit comments

Comments
 (0)