diff --git a/changelog.md b/changelog.md index 89394d2..158f220 100644 --- a/changelog.md +++ b/changelog.md @@ -2,6 +2,7 @@ | Version | Change | | --------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| 3.20.1 | Fixed inconsistent casing in imports | | 3.20.0 | Adds support for Zod 3.20 with catch and pipe parser as well as new string validations. Refactored Ref handling; adding definitions no longer considered experimental. Main API function refactored and simplified; output type less defined but a lot easier to maintain. Doubt anyone will miss it. | | 3.19.4 | Adds custom error message support | | 3.19.3 | Mark `definitions` as experimental in the readme | diff --git a/package-lock.json b/package-lock.json index 08a18ce..dd82c46 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "zod-to-json-schema", - "version": "3.20.0", + "version": "3.20.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "zod-to-json-schema", - "version": "3.20.0", + "version": "3.20.1", "license": "ISC", "devDependencies": { "@types/jest": "^26.0.24", diff --git a/package.json b/package.json index 0d3b16c..1575e13 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zod-to-json-schema", - "version": "3.20.0", + "version": "3.20.1", "description": "Converts Zod schemas to Json Schemas", "main": "index.js", "scripts": {