Skip to content

Commit

Permalink
0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
TooTallNate committed Sep 20, 2020
1 parent 84bcc08 commit 202ea14
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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}!` });
Expand All @@ -22,7 +22,7 @@ Next, define the **vercel-deno** runtime within the "functions" object in your
```json
{
"functions": {
"api/**/*.[jt]s": { "runtime": "[email protected].0" }
"api/**/*.[jt]s": { "runtime": "[email protected].1" }
}
}
```
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down

1 comment on commit 202ea14

@vercel
Copy link

@vercel vercel bot commented on 202ea14 Sep 20, 2020

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.