diff --git a/.changeset/minor-updates.md b/.changeset/minor-updates.md deleted file mode 100644 index a9b61f1..0000000 --- a/.changeset/minor-updates.md +++ /dev/null @@ -1,23 +0,0 @@ ---- -'storybook-react-context': minor ---- - -Export TypeScript types and improve developer experience - -- **New Features:** - - Export `ContextOptions` and `DecoratorOptions` types for better TypeScript support - - Add automated changelog generation with changesets - - Add GitHub Actions workflows for CI/CD and automated releases - -- **Improvements:** - - Fix inconsistent error messages in context hooks - - Remove unnecessary React Fragment wrapper in decorator - - Enable `noUnusedLocals` TypeScript option for better code hygiene - - Improve code formatting with updated Prettier and ESLint configurations - - Update all dependencies to latest versions - -- **Developer Experience:** - - Add comprehensive CONTRIBUTING.md documentation - - Set up automated release process with pre-release support - - Add support for alpha, beta, and next pre-release channels - - Add Husky pre-commit hooks with lint-staged for automated code quality checks diff --git a/CHANGELOG.md b/CHANGELOG.md index 6c07192..1b2c2b9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Changelog +## 0.9.0 + +### Minor Changes + +- [#4](https://github.com/tyom/storybook-react-context/pull/4) [`ba8214c`](https://github.com/tyom/storybook-react-context/commit/ba8214ca36fb0d8d3ccc3f4094ecc6567b282590) Thanks [@tyom](https://github.com/tyom)! - Export TypeScript types and improve developer experience + - **New Features:** + - Export `ContextOptions` and `DecoratorOptions` types for better TypeScript support + - Add automated changelog generation with changesets + - Add GitHub Actions workflows for CI/CD and automated releases + - **Improvements:** + - Fix inconsistent error messages in context hooks + - Remove unnecessary React Fragment wrapper in decorator + - Enable `noUnusedLocals` TypeScript option for better code hygiene + - Improve code formatting with updated Prettier and ESLint configurations + - Update all dependencies to latest versions + - **Developer Experience:** + - Add comprehensive CONTRIBUTING.md documentation + - Set up automated release process with pre-release support + - Add support for alpha, beta, and next pre-release channels + - Add Husky pre-commit hooks with lint-staged for automated code quality checks + All notable changes to this project will be documented in this file. ## 0.8.0 diff --git a/package.json b/package.json index ed54ead..40f6b8d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "storybook-react-context", - "version": "0.8.0", + "version": "0.9.0", "description": "Manipulate React context inside Storybook. Read state and dispatch updates from outside of React component.", "main": "dist/index.js", "typings": "dist/index.d.ts",