Skip to content

Commit 29f95de

Browse files
committed
release
1 parent f01b458 commit 29f95de

File tree

3 files changed

+9
-2
lines changed

3 files changed

+9
-2
lines changed

spiceflow/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# spiceflow
22

3+
## 1.11.1
4+
5+
### Patch Changes
6+
7+
- Fix support for request to pass schema
8+
39
## 1.11.0
410

511
### Minor Changes

spiceflow/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,14 +66,15 @@ import { Spiceflow } from 'spiceflow'
6666
// DO NOT declare the app separately and add routes later
6767
const app = new Spiceflow()
6868

69-
// Do NOT do this! Adding routes separately like this will lose type safety
69+
// Do NOT do this! Defining routes separately will lose type safety
7070
app.route({
7171
method: 'GET',
7272
path: '/hello',
7373
handler() {
7474
return 'Hello, World!'
7575
},
7676
})
77+
// Do NOT do this! Adding routes separately like this will lose type safety
7778
app.route({
7879
method: 'POST',
7980
path: '/echo',

spiceflow/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "spiceflow",
3-
"version": "1.11.0",
3+
"version": "1.11.1",
44
"description": "Simple API framework with RPC and type safety",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

0 commit comments

Comments
 (0)