Skip to content

Commit 24ca86f

Browse files
CRAN RC 0.12.0 (#861)
* bump deps * fix regression * bump Pandoc version * bump deps * bump versions * update actions * Update check-readme.yaml * remove redundant `pairwise.comparisons` arg closes #858 * also update vignettes for the API change * use roxyglobals to automate generating global variables * fix styler workflow; minor styling * clean up comments; bump Pandoc * minor * use latest versions for pairwise comparisons * skip on devel for now * rstantools needed? * run random order check on R-release * use per-operation grouping feature * use glue for creating expressions * Apply automatic changes * Update faq.Rmd closes #864 * CRAN submission --------- Co-authored-by: IndrajeetPatil <IndrajeetPatil@users.noreply.github.com>
1 parent befe812 commit 24ca86f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+1155
-302
lines changed

.github/workflows/R-CMD-check-hard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
# https://github.com/jgm/pandoc/releases
3030
- uses: r-lib/actions/setup-pandoc@v2
3131
with:
32-
pandoc-version: "3.1.2"
32+
pandoc-version: "3.1.6"
3333

3434
- uses: r-lib/actions/setup-r@v2
3535
with:

.github/workflows/R-CMD-check-strict.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
- uses: r-lib/actions/setup-pandoc@v2
4040
with:
41-
pandoc-version: "3.1.2"
41+
pandoc-version: "3.1.6"
4242

4343
- uses: r-lib/actions/setup-r@v2
4444
with:

.github/workflows/R-CMD-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ jobs:
4242

4343
- uses: r-lib/actions/setup-pandoc@v2
4444
with:
45-
pandoc-version: "3.1.2"
45+
pandoc-version: "3.1.6"
4646

4747
- uses: r-lib/actions/setup-r@v2
4848
with:

.github/workflows/check-link-rot.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: r-lib/actions/setup-pandoc@v2
2323
with:
24-
pandoc-version: "3.1.2"
24+
pandoc-version: "3.1.6"
2525

2626
- uses: r-lib/actions/setup-r@v2
2727
with:

.github/workflows/check-random-test-order.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: r-lib/actions/setup-r@v2
2020
with:
21-
r-version: "devel"
21+
r-version: "release"
2222
use-public-rspm: true
2323

2424
- uses: r-lib/actions/setup-r-dependencies@v2
@@ -34,7 +34,7 @@ jobs:
3434
library(cli)
3535
library(glue)
3636
library(testthat)
37-
pkgload::load_all(".")
37+
pkgload::load_all(".", quiet = TRUE)
3838
test_script_paths <- testthat::find_test_scripts("tests/testthat")
3939
seed <- sample.int(1e6, 1L)
4040
cli_inform("Chosen seed for the current test run: {seed}")

.github/workflows/check-readme.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ jobs:
1919
fail-fast: false
2020
matrix:
2121
config:
22-
#- { os: ubuntu-latest, r: "release" }
23-
- { os: ubuntu-latest, r: "devel" }
22+
- { os: ubuntu-latest, r: "release" }
23+
#- { os: ubuntu-latest, r: "devel" }
2424

2525
env:
2626
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
@@ -32,7 +32,7 @@ jobs:
3232
# https://github.com/jgm/pandoc/releases
3333
- uses: r-lib/actions/setup-pandoc@v2
3434
with:
35-
pandoc-version: "3.1.2"
35+
pandoc-version: "3.1.6"
3636

3737
- uses: r-lib/actions/setup-r@v2
3838
with:

.github/workflows/check-spelling.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121

2222
- uses: r-lib/actions/setup-pandoc@v2
2323
with:
24-
pandoc-version: "3.1.2"
24+
pandoc-version: "3.1.6"
2525

2626
- uses: r-lib/actions/setup-r@v2
2727
with:

.github/workflows/check-vignette-warnings.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818

1919
- uses: r-lib/actions/setup-pandoc@v2
2020
with:
21-
pandoc-version: "3.1.2"
21+
pandoc-version: "3.1.6"
2222

2323
- uses: r-lib/actions/setup-r@v2
2424
with:

.github/workflows/pkgdown-no-suggests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727
# https://github.com/jgm/pandoc/releases
2828
- uses: r-lib/actions/setup-pandoc@v2
2929
with:
30-
pandoc-version: "3.1.2"
30+
pandoc-version: "3.1.6"
3131

3232
- uses: r-lib/actions/setup-r@v2
3333
with:

.github/workflows/pkgdown.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424

2525
- uses: r-lib/actions/setup-pandoc@v2
2626
with:
27-
pandoc-version: "3.1.2"
27+
pandoc-version: "3.1.6"
2828

2929
- uses: r-lib/actions/setup-r@v2
3030
with:
@@ -48,7 +48,7 @@ jobs:
4848

4949
- name: Deploy to GitHub pages 🚀
5050
if: github.event_name != 'pull_request'
51-
uses: JamesIves/github-pages-deploy-action@v4.4.1
51+
uses: JamesIves/github-pages-deploy-action@v4.4.3
5252
with:
5353
branch: gh-pages
5454
folder: docs

0 commit comments

Comments
 (0)