Skip to content

Commit

Permalink
feat: 1.18 support (#160)
Browse files Browse the repository at this point in the history
  • Loading branch information
eliassjogreen authored Feb 6, 2022
1 parent 832ceaf commit 1d0e218
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The format is based on [Keep a Changelog], and this project adheres to

### Bug Fixes

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

## [2.4.4] - 2020-10-10

Expand Down
12 changes: 6 additions & 6 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,20 +14,20 @@ export {
reset,
setColorEnabled,
yellow,
} from "https://deno.land/std@0.106.0/fmt/colors.ts";
} from "https://deno.land/std@0.125.0/fmt/colors.ts";

// configuration reading
export {
exists,
existsSync,
walk, // ... and one type of file monitoring
} from "https://deno.land/std@0.106.0/fs/mod.ts";
} from "https://deno.land/std@0.125.0/fs/mod.ts";

// configuration parsing (YAML)
export {
JSON_SCHEMA,
parse as parseYaml,
} from "https://deno.land/std@0.106.0/encoding/yaml.ts";
} from "https://deno.land/std@0.125.0/encoding/yaml.ts";

// file watching and directory matching
export {
Expand All @@ -36,10 +36,10 @@ export {
globToRegExp,
relative,
resolve,
} from "https://deno.land/std@0.106.0/path/mod.ts";
} from "https://deno.land/std@0.125.0/path/mod.ts";

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

// permission management
export { grant } from "https://deno.land/std@0.106.0/permissions/mod.ts";
export { grant } from "https://deno.land/std@0.125.0/permissions/mod.ts";
2 changes: 1 addition & 1 deletion info.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// Copyright 2020-2021 the denosaurs team. All rights reserved. MIT license.

export const VERSION = "2.4.9";
export const VERSION = "2.5.0";
export const BRANCH = "main";
// export const COMPAT: { [denon: string]: string[] } = {
// "2.3.0": ["1.2.0"],
Expand Down
2 changes: 1 addition & 1 deletion test_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,4 +4,4 @@
export {
assert,
assertEquals,
} from "https://deno.land/std@0.104.0/testing/asserts.ts";
} from "https://deno.land/std@0.125.0/testing/asserts.ts";

0 comments on commit 1d0e218

Please sign in to comment.