Skip to content

Commit 30e8f15

Browse files
Merge branch 'main' into standalone
2 parents a2b8ad4 + 957d64f commit 30e8f15

Some content is hidden

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

58 files changed

+73
-118
lines changed

.github/workflows/check-all-examples.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
2323

2424
steps:
25-
- uses: actions/checkout@v3
25+
- uses: actions/checkout@v4
2626

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

.github/workflows/check-full.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
R_KEEP_PKG_SOURCE: yes
3939

4040
steps:
41-
- uses: actions/checkout@v3
41+
- uses: actions/checkout@v4
4242

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

@@ -56,6 +56,7 @@ jobs:
5656
- uses: r-lib/actions/check-r-package@v2
5757
with:
5858
upload-snapshots: true
59-
error-on: 'ifelse(getRversion() > 3.6, "warning", "note")'
59+
error-on: 'ifelse(getRversion() > "3.6", "warning", "note")'
6060
env:
6161
_R_CHECK_FORCE_SUGGESTS_: false
62+
_R_CHECK_STOP_ON_INVALID_NUMERIC_VERSION_INPUTS_: true

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1616
R_KEEP_PKG_SOURCE: yes
1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- uses: r-lib/actions/setup-pandoc@v2
2121

.github/workflows/pkgdown.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
env:
2121
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
2222
steps:
23-
- uses: actions/checkout@v3
23+
- uses: actions/checkout@v4
2424

2525
- uses: r-lib/actions/setup-pandoc@v2
2626

@@ -39,7 +39,7 @@ jobs:
3939

4040
- name: Deploy to GitHub pages 🚀
4141
if: github.event_name != 'pull_request'
42-
uses: JamesIves/[email protected].2
42+
uses: JamesIves/[email protected].3
4343
with:
4444
clean: false
4545
branch: gh-pages

.github/workflows/pre-commit.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
uses: styfle/[email protected]
2222
with:
2323
access_token: ${{ github.token }}
24-
- uses: actions/checkout@v3
24+
- uses: actions/checkout@v4
2525
with:
2626
fetch-depth: 0
2727
- name: Install system dependencies

.github/workflows/test-coverage.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
1616

1717
steps:
18-
- uses: actions/checkout@v3
18+
- uses: actions/checkout@v4
1919

2020
- uses: r-lib/actions/setup-r@v2
2121
with:

.github/workflows/touchstone-receive.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
config: ${{ steps.read_touchstone_config.outputs.config }}
2525
steps:
2626
- name: Checkout repo
27-
uses: actions/checkout@v3
27+
uses: actions/checkout@v4
2828
with:
2929
fetch-depth: 0
3030

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ default_language_version:
66

77
repos:
88
- repo: https://github.com/lorenzwalthert/precommit
9-
rev: f3498c421d68a1db26de1a1fe3ecc91dd6f03b5e
9+
rev: v0.3.2.9019
1010
hooks:
1111
- id: style-files
1212
args:

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: styler
33
Title: Non-Invasive Pretty Printing of R Code
4-
Version: 1.10.1
4+
Version: 1.10.2
55
Authors@R:
66
c(person(given = "Kirill",
77
family = "Müller",

NEWS.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,23 @@
1+
<!-- NEWS.md is maintained by https://cynkra.github.io/fledge, do not edit -->
2+
3+
# styler 1.10.2
4+
5+
This release was requested by the CRAN team to fix CRAN warning on invalid
6+
numeric version inputs (#1143).
7+
8+
**Minor changes**
9+
10+
* Use cli messaging for cache (#1127).
11+
* Use latest (and stable!) pre-commit (#1144).
12+
* Fix CRAN warning on invalid numeric version inputs (#1143).
13+
* Bump JamesIves/github-pages-deploy-action from 4.4.2 to 4.4.3 (#1139).
14+
* fix pre-commit (#1132).
15+
* Don't require dplyr anywhere (#1131).
16+
17+
We thank everyone who helped making this release possible.
18+
19+
[&#x0040;krlmlr](https://github.com/krlmlr), [&#x0040;lorenzwalthert](https://github.com/lorenzwalthert), [&#x0040;MichaelChirico](https://github.com/MichaelChirico), [&#x0040;olivroy](https://github.com/olivroy), [&#x0040;rkrug](https://github.com/rkrug), and [&#x0040;rossdrucker](https://github.com/rossdrucker).
20+
121
# styler 1.10.1
222

323
This release was requested by CRAN due to accidentally populating a user cache while building vignettes for R >= 4.3.0.

0 commit comments

Comments
 (0)