diff --git a/README.md b/README.md index 41b0822..ba10f9d 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ function powered by [Deno](https://deno.land), running on Create a file called `api/hello.ts` with the following contents: ```typescript -import { ServerRequest } from 'https://deno.land/std@0.67.0/http/server.ts'; +import { ServerRequest } from 'https://deno.land/std@0.70.0/http/server.ts'; export default async (req: ServerRequest) => { req.respond({ body: `Hello, from Deno v${Deno.version.deno}!` }); @@ -22,7 +22,7 @@ Next, define the **vercel-deno** runtime within the "functions" object in your ```json { "functions": { - "api/**/*.[jt]s": { "runtime": "vercel-deno@0.7.0" } + "api/**/*.[jt]s": { "runtime": "vercel-deno@0.7.1" } } } ``` diff --git a/package.json b/package.json index 493c6d9..15e7b34 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "vercel-deno", - "version": "0.7.0", + "version": "0.7.1", "description": "Vercel Runtime for Deno serverless functions", "main": "dist/index.js", "types": "dist/index.d.ts",