From 1a1ddab8b64414799da0ad06abdf9e7fda2c7b8f Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 23 Aug 2024 02:44:01 +0000 Subject: [PATCH] chore(main): release 2.0.0 --- CHANGELOG.md | 11 +++++++++++ package.json | 18 +++++++++++++++--- 2 files changed, 26 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c65d11f..9ce505e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [2.0.0](https://github.com/chrisvander/zustand-computed/compare/v1.4.2...v2.0.0) (2024-08-23) + + +### ⚠ BREAKING CHANGES + +* replace `computed` middleware with `createComputed` function + +### Features + +* replace `computed` middleware with `createComputed` function ([db30ae9](https://github.com/chrisvander/zustand-computed/commit/db30ae959fa67e13f527141ff9181521eb515367)) + ## [1.4.2](https://github.com/chrisvander/zustand-computed/compare/v1.4.1...v1.4.2) (2024-08-22) diff --git a/package.json b/package.json index 3eaf04a..0cc4b6c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "zustand-computed", - "version": "1.4.2", + "version": "2.0.0", "author": "chrisvander", "repository": "chrisvander/zustand-computed", "main": "dist/index.js", @@ -31,8 +31,20 @@ } }, "description": "A Zustand middleware to create computed states.", - "files": ["/dist"], - "keywords": ["zustand", "computed", "calculated", "state", "react", "plugin", "middleware", "npm", "typescript"], + "files": [ + "/dist" + ], + "keywords": [ + "zustand", + "computed", + "calculated", + "state", + "react", + "plugin", + "middleware", + "npm", + "typescript" + ], "license": "MIT", "scripts": { "check": "biome check --write",