Skip to content

Commit 575f586

Browse files
authored
v0.1.2 (#57)
1 parent 21c9a47 commit 575f586

File tree

11 files changed

+90
-5
lines changed

11 files changed

+90
-5
lines changed

.Rbuildignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,7 @@
1616
^babel.config.json$
1717
^codecov\.yml$
1818
vignettes
19+
^.browserslistrc$
20+
^yarn.lock$
21+
^revdep$
22+
^cran-comments\.md$

DESCRIPTION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: shinyvalidate
22
Title: Input Validation for Shiny Apps
3-
Version: 0.1.1.9001
3+
Version: 0.1.2
44
Authors@R: c(
55
person("Richard", "Iannone", , "[email protected]", c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-3925-190X")),
@@ -14,14 +14,14 @@ License: MIT + file LICENSE
1414
URL: https://rstudio.github.io/shinyvalidate/,
1515
https://github.com/rstudio/shinyvalidate
1616
Encoding: UTF-8
17-
Imports:
17+
Imports:
1818
shiny (>= 1.6),
1919
htmltools (>= 0.5.1.1),
2020
rlang (>= 0.4.10),
2121
glue (>= 1.4.2)
2222
RoxygenNote: 7.1.2
2323
Roxygen: list(markdown = TRUE)
24-
Suggests:
24+
Suggests:
2525
testthat,
2626
knitr,
2727
rmarkdown,

NEWS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# shinyvalidate (development version)
1+
# shinyvalidate 0.1.2
22

33
* Support HTML messages when failing a validation. (#55)
44

R/zzz.R

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Add a `::` to shiny to avoid "no usage" warning
2+
dummy_import <- function() {
3+
shiny::runApp
4+
}

cran-comments.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
## Comments
2+
3+
#### 2022-04-21
4+
5+
Small, new feature.
6+
7+
Thank you,
8+
Rich
9+
10+
## R CMD check results
11+
12+
* local macOS, R 4.1.3
13+
* GitHub Actions
14+
* macOS
15+
* 4.1
16+
* windows
17+
* 4.1
18+
* ubuntu18
19+
* devel, 4.1, 4.0, 3.6, 3.5, 3.4
20+
* devtools::
21+
* check_win_devel()
22+
* check_win_release()
23+
* check_win_oldrelease()
24+
25+
0 errors ✔ | 0 warnings ✔ | 0 notes ✔
26+
27+
## revdepcheck results
28+
29+
We checked 2 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
30+
31+
* We saw 0 new problems
32+
* We failed to check 0 packages

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
"test": "tests"
1010
},
1111
"scripts": {
12-
"test": "echo \"Error: no test specified\" && exit 1",
1312
"build": "node srcjs/_build.mjs"
1413
},
1514
"repository": {

revdep/.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
checks
2+
library
3+
checks.noindex
4+
library.noindex
5+
cloud.noindex
6+
data.sqlite
7+
*.html

revdep/README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Platform
2+
3+
|field |value |
4+
|:--------|:-------------------------------|
5+
|version |R version 4.1.3 (2022-03-10) |
6+
|os |macOS Big Sur/Monterey 10.16 |
7+
|system |x86_64, darwin17.0 |
8+
|ui |X11 |
9+
|language |(EN) |
10+
|collate |en_US.UTF-8 |
11+
|ctype |en_US.UTF-8 |
12+
|tz |America/New_York |
13+
|date |2022-04-21 |
14+
|pandoc |2.9.1.1 @ /usr/local/bin/pandoc |
15+
16+
# Dependencies
17+
18+
|package |old |new |Δ |
19+
|:-------------|:-----|:-----|:--|
20+
|shinyvalidate |0.1.1 |0.1.2 |* |
21+
22+
# Revdeps
23+
24+
## All (2)
25+
26+
|package |version |error |warning |note |
27+
|:-----------|:-------|:-----|:-------|:----|
28+
|findInFiles |0.4.0 | | | |
29+
|RawHummus |0.2.1 | | | |
30+

revdep/cran.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
## revdepcheck results
2+
3+
We checked 2 reverse dependencies, comparing R CMD check results across CRAN and dev versions of this package.
4+
5+
* We saw 0 new problems
6+
* We failed to check 0 packages
7+

revdep/failures.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*Wow, no problems at all. :)*

0 commit comments

Comments
 (0)