Skip to content

Commit

Permalink
feat: Update to Deno 1.7.0 and std 0.84.0 (#207)
Browse files Browse the repository at this point in the history
  • Loading branch information
Soremwar authored Jan 24, 2021
1 parent ebc66a6 commit 6429e2b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
- name: Install deno
uses: denolib/setup-deno@master
with:
deno-version: 1.6.0
deno-version: 1.7.0

- name: Check formatting
run: deno fmt --check
Expand Down
12 changes: 6 additions & 6 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
export { BufReader, BufWriter } from "https://deno.land/std@0.80.0/io/bufio.ts";
export { copy } from "https://deno.land/std@0.80.0/bytes/mod.ts";
export { createHash } from "https://deno.land/std@0.80.0/hash/mod.ts";
export { deferred, delay } from "https://deno.land/std@0.80.0/async/mod.ts";
export { bold, yellow } from "https://deno.land/std@0.80.0/fmt/colors.ts";
export type { Deferred } from "https://deno.land/std@0.80.0/async/mod.ts";
export { BufReader, BufWriter } from "https://deno.land/std@0.84.0/io/bufio.ts";
export { copy } from "https://deno.land/std@0.84.0/bytes/mod.ts";
export { createHash } from "https://deno.land/std@0.84.0/hash/mod.ts";
export { deferred, delay } from "https://deno.land/std@0.84.0/async/mod.ts";
export { bold, yellow } from "https://deno.land/std@0.84.0/fmt/colors.ts";
export type { Deferred } from "https://deno.land/std@0.84.0/async/mod.ts";
4 changes: 2 additions & 2 deletions test_deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ export {
assertEquals,
assertThrows,
assertThrowsAsync,
} from "https://deno.land/std@0.80.0/testing/asserts.ts";
} from "https://deno.land/std@0.84.0/testing/asserts.ts";
export {
decode as decodeBase64,
encode as encodeBase64,
} from "https://deno.land/std@0.80.0/encoding/base64.ts";
} from "https://deno.land/std@0.84.0/encoding/base64.ts";

0 comments on commit 6429e2b

Please # to comment.