diff --git a/CHANGELOG.md b/CHANGELOG.md index 1cb580a..bfd07ae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +# [3.0.0](https://github.com/teroneko/redux-saga-promise/compare/2.0.2...3.0.0) (2021-12-03) + + +### Features + +* promise action is now typed and usable as promise ([8f7c60e](https://github.com/teroneko/redux-saga-promise/commit/8f7c60e999f954d92c1c7d4ee5675fb4e5b820fd)) + + +### BREAKING CHANGES + +* Each promise action can now be awaited at root after it has been surpassed the promise middleware without accessing it through promiseAction.meta.promise first. + + + ## [2.0.2](https://github.com/teroneko/redux-saga-promise/compare/2.0.1...2.0.2) (2021-12-02) diff --git a/package.json b/package.json index 76d4642..fcdd3d1 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@teroneko/redux-saga-promise", - "version": "2.0.2", + "version": "3.0.0", "description": "Create actions that return promises, which are resolved or rejected by a redux saga", "main": "dist/src/index.js", "typings": "dist/src/index.d.ts",