Skip to content

Commit

Permalink
bump Deno to v0.20.0 (#74)
Browse files Browse the repository at this point in the history
* bump Deno to v0.20.0

* Update deps.ts
  • Loading branch information
bartlomieju authored Oct 10, 2019
1 parent 2d5a9f5 commit 95a4c1b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
language: generic

install:
- curl -fsSL https://deno.land/x/install/install.sh | sh -s v0.19.0
- curl -fsSL https://deno.land/x/install/install.sh | sh -s v0.20.0
- export PATH="$HOME/.deno/bin:$PATH"

services:
Expand Down
8 changes: 4 additions & 4 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
export {
BufReader,
BufWriter
} from "https://deno.land/std@v0.17.0/io/bufio.ts";
} from "https://deno.land/std@v0.20.0/io/bufio.ts";

export { copyBytes } from "https://deno.land/std@v0.17.0/io/util.ts";
export { copyBytes } from "https://deno.land/std@v0.20.0/io/util.ts";

export {
assert,
assertEquals,
assertStrContains,
assertThrowsAsync
} from "https://deno.land/std@v0.17.0/testing/asserts.ts";
} from "https://deno.land/std@v0.20.0/testing/asserts.ts";

export {
runTests,
test,
TestFunction
} from "https://deno.land/std@v0.17.0/testing/mod.ts";
} from "https://deno.land/std@v0.20.0/testing/mod.ts";

export { Hash } from "https://deno.land/x/[email protected]/mod.ts";

0 comments on commit 95a4c1b

Please sign in to comment.