Skip to content

Commit acbbb48

Browse files
update to CRAN v2.2.1
1 parent c68adbf commit acbbb48

5 files changed

+28
-50
lines changed

DESCRIPTION

+4-6
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
Package: soiltestcorr
22
Title: Soil Test Correlation and Calibration
3-
Version: 2.2.0
4-
Date: 2023-04-06
3+
Version: 2.2.1
4+
Date: 2024-06-30
55
Authors@R: c(
66
person(given = "Adrian A.", family = "Correndo",
7-
email = "[email protected]", role = c("cre","cph"),comment = c(ORCID = "0000-0002-4172-289X")),
8-
person(given = "Adrian A.", family = "Correndo",
9-
email = "[email protected]", role = "aut",comment = c(ORCID = "0000-0002-4172-289X")),
7+
email = "[email protected]", role = c("aut", "cre", "cph"),comment = c(ORCID = "0000-0002-4172-289X")),
108
person(given = "Austin", family = "Pearce",
119
email = "[email protected]", role = "aut",comment = c(ORCID = "0000-0002-2541-896X")),
1210
person(given = "Fernando", family = "Miguez",
@@ -18,7 +16,7 @@ Description: A compilation of functions designed to assist users on the correlat
1816
License: MIT + file LICENSE
1917
Encoding: UTF-8
2018
Roxygen: list(markdown = TRUE)
21-
RoxygenNote: 7.2.3
19+
RoxygenNote: 7.3.2
2220
Suggests:
2321
knitr,
2422
rmarkdown,

NEWS.md

+16-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,22 @@
1-
# soiltestcorr 2.2.0
1+
# soiltestcorr 2.2.1
22

33
Updates of the new version:
44

5+
1) Fixing duplicated ORCID on DESCRIPTION file.
6+
7+
2) Include the "quadratic" term estimate as an output of the quadratic_plateau() function. This term is useful to understand the curvature of the quadratic model.
8+
9+
3) Fixing the names of the vignettes to display correctly on the CRAN website.
10+
11+
####################
12+
PREVIOUS VERSIONS
13+
####################
14+
15+
# soiltestcorr 2.2.0
16+
17+
* Apr 7th, 2023. <br/>
18+
Updates of this version:
19+
520
1) Bootstrapping:
621
- New bootstrapping functions for all models to better approximate distributions of CSTVs and parameters or derived quantities of interest. Functions include: (i) `boot_cn_1965()`, (ii) `boot_cn_1971()`, (iii) `boot_mod_alcc()`, (iv) `boot_linear_plateau()`, (v) `boot_quadratic_plateau()`, and (vi) `boot_mitscherlich()`.
722

R/quadratic_plateau.R

+1
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,7 @@ quadratic_plateau <- function(data = NULL,
191191
results <- dplyr::tibble(
192192
intercept = a,
193193
slope = b,
194+
quadratic = c,
194195
equation,
195196
plateau,
196197
CSTV,

cran-comments.md

+6-41
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
1-
# soiltestcorr 2.2.0
1+
# soiltestcorr 2.2.1.
22

3-
* This is an update of the package. Precedent version (v2.1.2)
3+
* This is an update of the package. Precedent version (v2.2.0)
44

55

66
###########################################################
77

8-
## 1. Local R CMD check results ────────────────── soiltestcorr 2.2.0 ────
9-
Duration: 2m 51s
8+
## 1. Local R CMD check results ────────────────── soiltestcorr 2.2.1 ────
9+
Duration: 2m 25.9s
1010

1111
0 errors ✔ | 0 warnings ✔ | 0 notes ✔
1212

@@ -16,46 +16,11 @@ R CMD check succeeded
1616

1717
## 2. WIN-DEVEL. Results devtools::check_win_devel()
1818

19-
Build log: https://win-builder.r-project.org/tup2SBKe8JZN
19+
Build log:
2020

2121

2222
###########################################################
2323

24-
# 3. R-hub check, results from devtools::check_rhub()
24+
# 3. R-hub check, results from rhub::rhub_check()
2525

2626
## Test environments
27-
- R-hub Windows Server 2022, R-devel, 64 bit, build log:
28-
Status: OK
29-
https://builder.r-hub.io/status/soiltestcorr_2.2.0.tar.gz-67725deb258d4c14bc92a44f5fcc2e9e
30-
31-
- R-hub Ubuntu Linux 20.04.1 LTS, R-release, GCC, build log:
32-
Status: NOTE
33-
https://builder.r-hub.io/status/soiltestcorr_2.2.0.tar.gz-b0ca8eaefd14440fa8555ab1057bbf1e
34-
35-
NOTE:
36-
37-
Found the following (possibly) invalid DOIs:
38-
DOI: 10.2134/agronj1994.00021962008600010033x
39-
From: DESCRIPTION
40-
Status: Forbidden
41-
Message: 403
42-
DOI: 10.2134/asaspecpub29.c1
43-
From: DESCRIPTION
44-
Status: Forbidden
45-
Message: 403
46-
DOI: 10.2136/sssaj1971.03615995003500040048x
47-
From: DESCRIPTION
48-
Status: Forbidden
49-
Message: 403
50-
DOI: 10.2307/2529422
51-
From: DESCRIPTION
52-
Status: Forbidden
53-
Message: 403
54-
55-
EXPLANATION:
56-
All DOIs marked as (possibly) invalid were checked and they are all working.
57-
58-
- R-hub Fedora Linux, R-devel, clang, gfortran, build log:
59-
Status: OK
60-
https://builder.r-hub.io/status/soiltestcorr_2.2.0.tar.gz-d84d958440ed430293a9ffb3c5a3b4ae
61-

man/soiltestcorr-package.Rd

+1-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)