From 1d0e218728b5b870495fdc4a7d0c440f7607049c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Elias=20Sj=C3=B6green?= Date: Sun, 6 Feb 2022 19:13:40 +0100 Subject: [PATCH] feat: 1.18 support (#160) --- CHANGELOG.md | 2 +- deps.ts | 12 ++++++------ info.ts | 2 +- test_deps.ts | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2d03e61..f66082c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/deps.ts b/deps.ts index bb6d6ae..fc709de 100644 --- a/deps.ts +++ b/deps.ts @@ -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 { @@ -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"; diff --git a/info.ts b/info.ts index d3cda82..4d1cb47 100644 --- a/info.ts +++ b/info.ts @@ -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"], diff --git a/test_deps.ts b/test_deps.ts index 22e1314..d418bae 100644 --- a/test_deps.ts +++ b/test_deps.ts @@ -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";