From 3e71acee179e2197b933b5eefce0c27fccc0459a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20D=C4=85browski?= Date: Fri, 11 Oct 2024 23:19:39 +0200 Subject: [PATCH] chore(release): 0.2.1 --- CHANGELOG.md | 34 ++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 35 insertions(+), 1 deletion(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..4d43fc1 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,34 @@ +# Changelog + +All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. + +## [0.2.1](https://github.com/paolostyle/hono-zod-openapi/compare/v0.2.0...v0.2.1) (2024-10-11) + + +### Features + +* export some types that might be useful for users ([5ecd9f8](https://github.com/paolostyle/hono-zod-openapi/commit/5ecd9f81293d99199c39afcc830740ba905a6e45)) + + +### Bug Fixes + +* allow Hono instances with different Env type parameter than default ([f77869c](https://github.com/paolostyle/hono-zod-openapi/commit/f77869c4553c8cf64ec81cbea9744d924cd7d435)), closes [#2](https://github.com/paolostyle/hono-zod-openapi/issues/2) + +## [0.2.0](https://github.com/paolostyle/hono-zod-openapi/compare/v0.1.1...v0.2.0) (2024-10-06) + + +### ⚠ BREAKING CHANGES + +* major rewrite, stabilized public API, decent test coverage + +### Features + +* major rewrite, stabilized public API, decent test coverage ([0f19085](https://github.com/paolostyle/hono-zod-openapi/commit/0f190855e2ca46777939b94681fdf91c4f7ff477)) +* response validator ([#1](https://github.com/paolostyle/hono-zod-openapi/issues/1)) ([12ed885](https://github.com/paolostyle/hono-zod-openapi/commit/12ed8854f7b351434dc7412e967f6f0632d9fbe1)) + +## [0.1.1](https://github.com/paolostyle/hono-zod-openapi/compare/0e7d2905992ed0df2e5ed39e6b231750b9f46c0d...v0.1.1) (2024-09-19) + + +### Features + +* configurable routeName, third argument endpointDetails ([0e7d290](https://github.com/paolostyle/hono-zod-openapi/commit/0e7d2905992ed0df2e5ed39e6b231750b9f46c0d)) diff --git a/package.json b/package.json index 662d114..239cb66 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "hono-zod-openapi", - "version": "0.2.0", + "version": "0.2.1", "description": "Alternative Hono middleware for creating OpenAPI documentation from Zod schemas", "author": "Paweł Dąbrowski ", "homepage": "https://github.com/paolostyle/hono-zod-openapi#readme",