Skip to content

Commit

Permalink
feat: 0.6.3
Browse files Browse the repository at this point in the history
  • Loading branch information
asos-craigmorten committed May 29, 2020
1 parent 7e86302 commit 091a1d0
Show file tree
Hide file tree
Showing 4 changed files with 148 additions and 156 deletions.
5 changes: 5 additions & 0 deletions .github/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# ChangeLog

## [0.6.3] - 29-05-2020

- fix: set versions on all deps to prevent adopting breaking changes from `master`.
- feat: minor upgrade of the `std` library third party module imports to `0.53.0`.

## [0.6.2] - 29-05-2020

- feat: support express style callback on `app.listen()`.
Expand Down
28 changes: 14 additions & 14 deletions deps.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,26 +6,26 @@ export {
Server,
ServerRequest,
Response,
} from "https://deno.land/std@0.52.0/http/server.ts";
} from "https://deno.land/std@0.53.0/http/server.ts";
export {
Status,
STATUS_TEXT,
} from "https://deno.land/std@0.52.0/http/http_status.ts";
} from "https://deno.land/std@0.53.0/http/http_status.ts";
export {
setCookie,
Cookie,
delCookie,
} from "https://deno.land/std@0.52.0/http/cookie.ts";
} from "https://deno.land/std@0.53.0/http/cookie.ts";
export {
extname,
fromFileUrl,
basename,
join,
dirname,
} from "https://deno.land/std@0.52.0/path/mod.ts";
export { setImmediate } from "https://deno.land/std@0.52.0/node/timers.ts";
export { Sha1 } from "https://deno.land/std@0.52.0/hash/sha1.ts";
export { encoder } from "https://deno.land/std@0.52.0/encoding/utf8.ts";
} from "https://deno.land/std@0.53.0/path/mod.ts";
export { setImmediate } from "https://deno.land/std@0.53.0/node/timers.ts";
export { Sha1 } from "https://deno.land/std@0.53.0/hash/sha1.ts";
export { encoder } from "https://deno.land/std@0.53.0/encoding/utf8.ts";
export {
Evt as EventEmitter,
to as getEvent,
Expand All @@ -34,14 +34,14 @@ export {
contentType,
charset,
} from "https://deno.land/x/[email protected]/mod.ts";
export { createError } from "https://deno.land/x/http_errors/mod.ts";
export { Accepts } from "https://deno.land/x/accepts@master/mod.ts";
export { createError } from "https://deno.land/x/http_errors@2.0.0/mod.ts";
export { Accepts } from "https://deno.land/x/accepts@1.0.0/mod.ts";
export {
typeofrequest,
hasBody,
} from "https://deno.land/x/type_is@master/mod.ts";
export { isIP } from "https://deno.land/x/isIP@master/mod.ts";
export { vary } from "https://deno.land/x/vary@master/mod.ts";
} from "https://deno.land/x/type_is@1.0.1/mod.ts";
export { isIP } from "https://deno.land/x/isIP@1.0.0/mod.ts";
export { vary } from "https://deno.land/x/vary@dc17535/mod.ts";
export { lookup } from "https://deno.land/x/[email protected]/mod.ts";
export { escapeHtml } from "https://deno.land/x/escape_html/mod.ts";
export { encodeUrl } from "https://deno.land/x/encodeurl/mod.ts";
export { escapeHtml } from "https://deno.land/x/escape_html@1.0.0/mod.ts";
export { encodeUrl } from "https://deno.land/x/encodeurl@1.0.0/mod.ts";
Loading

0 comments on commit 091a1d0

Please sign in to comment.