Skip to content

Commit

Permalink
Added changelog
Browse files Browse the repository at this point in the history
  • Loading branch information
mattpocock committed May 27, 2023
1 parent 28b3c5a commit 0d82fab
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
10 changes: 8 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# zod-fetch

## 0.1.1

### Patch Changes

- Updated readme

## 0.1.0

### Minor Changes
Expand All @@ -24,7 +30,7 @@
hello: "world",
}),
// Any parameters you would usually pass to fetch
"/my-api",
"/my-api"
).then((res) => {
console.log(res);
// ^? { hello: string }
Expand Down Expand Up @@ -55,7 +61,7 @@
params: {
id: 12345,
},
},
}
).then((res) => {
console.log(res);
// ^? { data: { name: string } }
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": "zod-fetch",
"version": "0.1.0",
"version": "0.1.1",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 0d82fab

Please sign in to comment.