Skip to content

Commit cee661d

Browse files
authored
Merge pull request #117 from vim-denops/v3-pre
Follow denops v3
2 parents d917014 + f392c51 commit cee661d

File tree

4 files changed

+12
-12
lines changed

4 files changed

+12
-12
lines changed

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
runner:
3434
- ubuntu-latest
3535
version:
36-
- "1.14.0"
36+
- "1.17.1"
3737
- "1.x"
3838
runs-on: ${{ matrix.runner }}
3939
steps:
@@ -65,11 +65,11 @@ jobs:
6565
- macos-latest
6666
- ubuntu-latest
6767
version:
68-
- "1.14.0"
68+
- "1.17.1"
6969
- "1.x"
7070
host_version:
71-
- vim: "v8.2.3081"
72-
nvim: "v0.5.0"
71+
- vim: "v8.2.3452"
72+
nvim: "v0.6.0"
7373
runs-on: ${{ matrix.runner }}
7474
steps:
7575
- run: git config --global core.autocrlf false

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ help:
99

1010
tools: FORCE ## Install development tools
1111
@mkdir -p ${TOOLS}
12-
@deno install -A -f -n udd --root ${TOOLS} https://deno.land/x/udd@0.4.0/main.ts
12+
@deno install -A -f -n udd --root ${TOOLS} https://deno.land/x/udd@0.7.2/main.ts
1313

1414
fmt: FORCE ## Format code
1515
@deno fmt --ignore=.deno

denops_std/deps.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
export * as fs from "https://deno.land/std@0.119.0/fs/mod.ts";
2-
export * as hash from "https://deno.land/std@0.119.0/hash/mod.ts";
3-
export * as path from "https://deno.land/std@0.119.0/path/mod.ts";
4-
export { deferred } from "https://deno.land/std@0.119.0/async/mod.ts";
1+
export * as fs from "https://deno.land/std@0.123.0/fs/mod.ts";
2+
export * as hash from "https://deno.land/std@0.123.0/hash/mod.ts";
3+
export * as path from "https://deno.land/std@0.123.0/path/mod.ts";
4+
export { deferred } from "https://deno.land/std@0.123.0/async/mod.ts";
55

6-
export * from "https://deno.land/x/denops_core@v2.2.0/mod.ts#^";
6+
export * from "https://deno.land/x/denops_core@v3.0.0/mod.ts#^";
77

88
export * from "https://deno.land/x/unknownutil@v1.1.4/mod.ts#^";

denops_std/deps_test.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
export * from "https://deno.land/std@0.119.0/testing/asserts.ts";
1+
export * from "https://deno.land/std@0.123.0/testing/asserts.ts";
22

3-
export * from "https://deno.land/x/denops_core@v2.2.0/test/mod.ts#^";
3+
export * from "https://deno.land/x/denops_core@v3.0.0/test/mod.ts#^";

0 commit comments

Comments
 (0)