Skip to content

Commit a995ff7

Browse files
committed
fix: update jsonc-parser
1 parent dc00af7 commit a995ff7

File tree

6 files changed

+11
-11
lines changed

6 files changed

+11
-11
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
RUST_BACKTRACE: full
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- uses: dsherret/rust-toolchain-file@v1
2424
- name: Install wasm32 target
2525
if: matrix.config.kind == 'test_release'
@@ -83,10 +83,10 @@ jobs:
8383
run: cargo publish
8484

8585
# GITHUB RELEASE
86-
- uses: denoland/setup-deno@v1
86+
- uses: denoland/setup-deno@v2
8787
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
8888
with:
89-
deno-version: v1.x
89+
deno-version: v2.x
9090
- name: Pre-release
9191
if: matrix.config.kind == 'test_release' && startsWith(github.ref, 'refs/tags/')
9292
run: |

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,11 +20,11 @@ jobs:
2020

2121
steps:
2222
- name: Clone repository
23-
uses: actions/checkout@v3
23+
uses: actions/checkout@v4
2424
with:
2525
token: ${{ secrets.GH_DPRINTBOT_PAT }}
2626

27-
- uses: denoland/setup-deno@v1
27+
- uses: denoland/setup-deno@v2
2828
- uses: dsherret/rust-toolchain-file@v1
2929

3030
- name: Bump version and tag

.rustfmt.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
max_width = 120
22
tab_spaces = 2
3-
edition = "2021"
3+
edition = "2024"

Cargo.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "dprint-plugin-jupyter"
33
version = "0.2.0"
44
authors = ["David Sherret <[email protected]>"]
5-
edition = "2021"
5+
edition = "2024"
66
homepage = "https://github.com/dprint/dprint-plugin-jupyter"
77
keywords = ["formatting", "formatter", "jupyter"]
88
license = "MIT"
@@ -26,7 +26,7 @@ wasm = ["dprint-core/wasm"]
2626
[dependencies]
2727
anyhow = "1.0.51"
2828
dprint-core = { version = "0.67.4", features = ["formatting"] }
29-
jsonc-parser = "0.26.2"
29+
jsonc-parser = "0.27.0"
3030
serde = { version = "1.0.108", features = ["derive"] }
3131
serde_json = "1.0"
3232

rust-toolchain.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[toolchain]
2-
channel = "1.76.0"
2+
channel = "1.90.0"
33
components = ["clippy", "rustfmt"]

0 commit comments

Comments
 (0)