Skip to content

Commit

Permalink
chore: upgrade to Deno 1.36.2
Browse files Browse the repository at this point in the history
  • Loading branch information
cknight committed Aug 22, 2023
1 parent 5ab6ae5 commit e6db4cd
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/optic-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
- name: download deno
uses: denolib/setup-deno@v2
with:
deno-version: v1.34.3
deno-version: v1.36.2
- name: check format
if: matrix.os == 'ubuntu-latest'
run: deno fmt --check
Expand Down
2 changes: 1 addition & 1 deletion deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ export {
gray,
red,
yellow,
} from "https://deno.land/std@0.192.0/fmt/colors.ts";
} from "https://deno.land/std@0.199.0/fmt/colors.ts";
6 changes: 3 additions & 3 deletions streams/fileStream/deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
export {
basename as posixBasename,
dirname as posixDirname,
} from "https://deno.land/std@0.192.0/path/posix.ts";
} from "https://deno.land/std@0.199.0/path/posix.ts";
export {
basename as win32Basename,
dirname as win32Dirname,
} from "https://deno.land/std@0.192.0/path/win32.ts";
export { BufWriterSync } from "https://deno.land/std@0.192.0/io/buf_writer.ts";
} from "https://deno.land/std@0.199.0/path/win32.ts";
export { BufWriterSync } from "https://deno.land/std@0.199.0/io/buf_writer.ts";
2 changes: 1 addition & 1 deletion test_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ export {
assertStrictEquals,
assertStringIncludes,
assertThrows,
} from "https://deno.land/std@0.192.0/testing/asserts.ts";
} from "https://deno.land/std@0.199.0/testing/asserts.ts";

0 comments on commit e6db4cd

Please sign in to comment.