Skip to content

Commit

Permalink
update to deno v0.36.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zhmushan committed Mar 12, 2020
1 parent 5eceb75 commit d68bde7
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
- uses: actions/checkout@v1
- uses: denolib/setup-deno@master
with:
deno-version: 0.35.0
deno-version: 0.36.0

- run: deno --version
- run: deno fmt --check
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
[![tag](https://img.shields.io/github/tag/zhmushan/abc.svg)](https://github.com/zhmushan/abc)
[![Build Status](https://github.com/zhmushan/abc/workflows/ci/badge.svg?branch=master)](https://github.com/zhmushan/abc/actions)
[![license](https://img.shields.io/github/license/zhmushan/abc.svg)](https://github.com/zhmushan/abc)
[![tag](https://img.shields.io/badge/deno-v0.35.0-green.svg)](https://github.com/denoland/deno)
[![tag](https://img.shields.io/badge/deno-v0.36.0-green.svg)](https://github.com/denoland/deno)

#### Quick links

Expand Down
8 changes: 4 additions & 4 deletions deps.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import * as _path from "https://deno.land/std@v0.35.0/path/mod.ts";
import * as _path from "https://deno.land/std@v0.36.0/path/mod.ts";

export {
serve,
Expand All @@ -8,14 +8,14 @@ export {
Server,
HTTPOptions,
HTTPSOptions
} from "https://deno.land/std@v0.35.0/http/server.ts";
} from "https://deno.land/std@v0.36.0/http/server.ts";
export {
Status,
STATUS_TEXT
} from "https://deno.land/std@v0.35.0/http/http_status.ts";
} from "https://deno.land/std@v0.36.0/http/http_status.ts";
export {
Cookie,
Cookies,
getCookies
} from "https://deno.land/std@v0.35.0/http/cookie.ts";
} from "https://deno.land/std@v0.36.0/http/cookie.ts";
export const path = _path;
4 changes: 2 additions & 2 deletions dev_deps.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import { ServerRequest } from "./deps.ts";

export { runIfMain } from "https://deno.land/std@v0.35.0/testing/bench.ts";
export { runIfMain } from "https://deno.land/std@v0.36.0/testing/bench.ts";
export {
assertEquals,
assertNotEquals,
assertThrowsAsync,
assertThrows,
assert
} from "https://deno.land/std@v0.35.0/testing/asserts.ts";
} from "https://deno.land/std@v0.36.0/testing/asserts.ts";

export function createMockRequest(
url = "https://example.com/"
Expand Down

0 comments on commit d68bde7

Please sign in to comment.