hono 1.6.1 → 1.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -774,7 +774,7 @@ app.get('/', (c) => {
774
774
  return c.html(<h1>Hello Deno!</h1>)
775
775
  })
776
776
 
777
- serve(app.fire())
777
+ serve((req) => app.fetch(req))
778
778
  ```
779
779
 
780
780
  ## Related projects
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hono",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "Ultrafast web framework for Cloudflare Workers.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",