Skip to content

Commit

Permalink
Merge pull request #76 from syumai/release-0.13.1
Browse files Browse the repository at this point in the history
Release 0.13.1
  • Loading branch information
syumai committed Oct 3, 2020
2 parents fff461b + 4a10e66 commit 742d46c
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
post,
redirect,
contentType,
} from "https://denopkg.com/syumai/[email protected].0/mod.ts";
} from "https://denopkg.com/syumai/[email protected].1/mod.ts";

app(
get("/hello", () => "hello"),
Expand Down
2 changes: 1 addition & 1 deletion dem.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
{
"protocol": "https",
"path": "deno.land/std",
"version": "v0.61.0",
"version": "0.73.0",
"files": [
"/encoding/utf8.ts",
"/flags/mod.ts",
Expand Down
2 changes: 1 addition & 1 deletion example/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { app, get, post, redirect, contentType } from "../mod.ts";
import { app, contentType, get, post, redirect } from "../mod.ts";

app(
get("/hello", () => "hello"),
Expand Down
12 changes: 6 additions & 6 deletions mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,22 @@ import {
Server,
ServerRequest,
} from "./vendor/https/deno.land/std/http/server.ts";
import { Response, processResponse } from "./response.ts";
import { processResponse, Response } from "./response.ts";
import { ErrorCode, getErrorMessage } from "./errors.ts";
import { Method, Handler, HandlerConfig } from "./handler.ts";
import { Handler, HandlerConfig, Method } from "./handler.ts";
import { Params, parseURLSearchParams } from "./params.ts";
import { defaultPort } from "./constants.ts";
import { detectedContentType } from "./mime.ts";
import { ReadCloser } from "./io.ts";
export { contentType, detectedContentType } from "./mime.ts";
export {
del,
get,
link,
options,
patch,
post,
put,
patch,
del,
options,
link,
unlink,
} from "./handler.ts";
export { redirect } from "./helpers.ts";
Expand Down
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/encoding/utf8.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.61.0/encoding/utf8.ts";
export * from "https://deno.land/std@0.73.0/encoding/utf8.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/flags/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.61.0/flags/mod.ts";
export * from "https://deno.land/std@0.73.0/flags/mod.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/http/server.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.61.0/http/server.ts";
export * from "https://deno.land/std@0.73.0/http/server.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/testing/asserts.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@v0.61.0/testing/asserts.ts";
export * from "https://deno.land/std@0.73.0/testing/asserts.ts";

0 comments on commit 742d46c

Please sign in to comment.