Skip to content

Commit 0020f3d

Browse files
committed
feat: Bump dependencies to std@^1
1 parent 8ff12de commit 0020f3d

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

.github/workflows/checks.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ jobs:
77
runs-on: ubuntu-latest
88
steps:
99
- uses: actions/checkout@v4
10-
- uses: denoland/setup-deno@v1
10+
- uses: denoland/setup-deno@v2
1111
- run: deno fmt --check
1212
- run: deno lint
13-
13+
1414
tests:
1515
name: ${{ matrix.kind }} ${{ matrix.os }}
1616
runs-on: ${{ matrix.os }}
@@ -20,5 +20,5 @@ jobs:
2020
os: [macOS-latest, windows-latest, ubuntu-latest]
2121
steps:
2222
- uses: actions/checkout@v4
23-
- uses: denoland/setup-deno@v1
23+
- uses: denoland/setup-deno@v2
2424
- run: deno test --import-map test_import_map.json -A --doc

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,5 +13,5 @@ jobs:
1313
id-token: write
1414
steps:
1515
- uses: actions/checkout@v4
16-
- uses: denoland/setup-deno@v1
16+
- uses: denoland/setup-deno@v2
1717
- run: deno publish

deno.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
{
22
"name": "@denosaurs/plug",
3-
"version": "1.0.6",
3+
"version": "1.1.0",
44
"exports": {
55
".": "./mod.ts",
66
"./types": "./types.ts",
77
"./download": "./download.ts",
88
"./util": "./util.ts"
99
},
1010
"imports": {
11-
"@std/encoding/hex": "jsr:@std/encoding@^0.221.0/hex",
12-
"@std/fmt/colors": "jsr:@std/fmt@^0.221.0/colors",
13-
"@std/fs": "jsr:@std/fs@^0.221.0",
14-
"@std/path": "jsr:@std/path@^0.221.0"
11+
"@std/encoding/hex": "jsr:@std/encoding@^1/hex",
12+
"@std/fmt/colors": "jsr:@std/fmt@^1/colors",
13+
"@std/fs": "jsr:@std/fs@^1",
14+
"@std/path": "jsr:@std/path@^1"
1515
},
1616
"lock": false
1717
}

test_import_map.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
"@denosaurs/plug/types": "./types.ts",
66
"@denosaurs/plug/download": "./download.ts",
77
"@denosaurs/plug/util": "./util.ts",
8-
"@std/assert": "jsr:@std/assert@^0.221.0",
9-
"@std/encoding/hex": "jsr:@std/encoding@^0.221.0/hex",
10-
"@std/fmt/colors": "jsr:@std/fmt@^0.221.0/colors",
8+
"@std/assert": "jsr:@std/assert@^1",
9+
"@std/encoding/hex": "jsr:@std/encoding@^1/hex",
10+
"@std/fmt/colors": "jsr:@std/fmt@^1/colors",
1111
"@std/fs": "jsr:@std/fs@^0.221.0",
12-
"@std/path": "jsr:@std/path@^0.221.0"
12+
"@std/path": "jsr:@std/path@^1"
1313
}
1414
}

0 commit comments

Comments
 (0)