Skip to content

Commit 1d0e218

Browse files
feat: 1.18 support (#160)
1 parent 832ceaf commit 1d0e218

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The format is based on [Keep a Changelog], and this project adheres to
3838

3939
### Bug Fixes
4040

41-
- change *.* to **/*.* ([`201d7bc`])
41+
- change _._ to **/_._ ([`201d7bc`])
4242

4343
## [2.4.4] - 2020-10-10
4444

deps.ts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,20 +14,20 @@ export {
1414
reset,
1515
setColorEnabled,
1616
yellow,
17-
} from "https://deno.land/std@0.106.0/fmt/colors.ts";
17+
} from "https://deno.land/std@0.125.0/fmt/colors.ts";
1818

1919
// configuration reading
2020
export {
2121
exists,
2222
existsSync,
2323
walk, // ... and one type of file monitoring
24-
} from "https://deno.land/std@0.106.0/fs/mod.ts";
24+
} from "https://deno.land/std@0.125.0/fs/mod.ts";
2525

2626
// configuration parsing (YAML)
2727
export {
2828
JSON_SCHEMA,
2929
parse as parseYaml,
30-
} from "https://deno.land/std@0.106.0/encoding/yaml.ts";
30+
} from "https://deno.land/std@0.125.0/encoding/yaml.ts";
3131

3232
// file watching and directory matching
3333
export {
@@ -36,10 +36,10 @@ export {
3636
globToRegExp,
3737
relative,
3838
resolve,
39-
} from "https://deno.land/std@0.106.0/path/mod.ts";
39+
} from "https://deno.land/std@0.125.0/path/mod.ts";
4040

4141
// event control
42-
export { deferred, delay } from "https://deno.land/std@0.106.0/async/mod.ts";
42+
export { deferred, delay } from "https://deno.land/std@0.125.0/async/mod.ts";
4343

4444
// permission management
45-
export { grant } from "https://deno.land/std@0.106.0/permissions/mod.ts";
45+
export { grant } from "https://deno.land/std@0.125.0/permissions/mod.ts";

info.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.
22

3-
export const VERSION = "2.4.9";
3+
export const VERSION = "2.5.0";
44
export const BRANCH = "main";
55
// export const COMPAT: { [denon: string]: string[] } = {
66
// "2.3.0": ["1.2.0"],

test_deps.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
export {
55
assert,
66
assertEquals,
7-
} from "https://deno.land/std@0.104.0/testing/asserts.ts";
7+
} from "https://deno.land/std@0.125.0/testing/asserts.ts";

0 commit comments

Comments
 (0)