Skip to content

Commit

Permalink
Update to Deno 0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
kitsonk committed Jul 19, 2019
1 parent 293c61f commit a2a18a1
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
@@ -1,7 +1,7 @@
language: python

variables:
DENO_VERSION: "v0.10.0"
DENO_VERSION: "v0.12.0"

install:
- curl -L https://deno.land/x/install/install.sh | sh -s $(DENO_VERSION)
Expand Down
8 changes: 4 additions & 4 deletions deps.ts
Expand Up @@ -7,11 +7,11 @@ export {
serve,
Server,
ServerRequest
} from "https://deno.land/std@v0.9.0/http/server.ts";
} from "https://deno.land/std@v0.12.0/http/server.ts";
export {
Status,
STATUS_TEXT
} from "https://deno.land/std@v0.9.0/http/http_status.ts";
} from "https://deno.land/std@v0.12.0/http/http_status.ts";
export {
basename,
extname,
Expand All @@ -21,8 +21,8 @@ export {
parse,
resolve,
sep
} from "https://deno.land/std@v0.9.0/fs/path/mod.ts";
} from "https://deno.land/std@v0.12.0/fs/path/mod.ts";
export {
contentType,
lookup
} from "https://deno.land/std@v0.9.0/media_types/mod.ts";
} from "https://deno.land/std@v0.12.0/media_types/mod.ts";
4 changes: 2 additions & 2 deletions test_deps.ts
@@ -1,11 +1,11 @@
// Copyright 2018-2019 the oak authors. All rights reserved. MIT license.

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

export {
assert,
assertEquals,
assertStrictEq,
assertThrows,
assertThrowsAsync
} from "https://deno.land/std@v0.9.0/testing/asserts.ts";
} from "https://deno.land/std@v0.12.0/testing/asserts.ts";

0 comments on commit a2a18a1

Please sign in to comment.