Skip to content

Commit

Permalink
chore: bump Deno and deps to v0.26.0 (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
bartlomieju authored Dec 13, 2019
1 parent e7fb6a7 commit 550bf5f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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.22.0
- curl -fsSL https://deno.land/x/install/install.sh | sh -s v0.26.0
- export PATH="$HOME/.deno/bin:$PATH"

services:
Expand Down
10 changes: 5 additions & 5 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,26 +1,26 @@
export {
BufReader,
BufWriter
} from "https://deno.land/std@v0.22.0/io/bufio.ts";
} from "https://deno.land/std@v0.26.0/io/bufio.ts";

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

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

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

export {
Deferred,
deferred
} from "https://deno.land/std@v0.22.0/util/async.ts";
} from "https://deno.land/std@v0.26.0/util/async.ts";

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

0 comments on commit 550bf5f

Please sign in to comment.