diff --git a/CHANGELOG.md b/CHANGELOG.md index 2f5b301..8a5f461 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,44 @@ +## 0.2.0 (2024-04-20) + + +### 🚀 Features + +- prototype of with-redux ([22157c9](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/22157c9)) +- devtools integration, demo app ([4b219b4](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/4b219b4)) +- add dataservice feature ([c6334de](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/c6334de)) +- add storage sync ([ef46f75](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/ef46f75)) +- update to nx 18 ([c92fbd3](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/c92fbd3)) +- **redux:** add private/public feature ([284da58](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/284da58)) +- **redux:** type-safe mvp ([aee6def](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/aee6def)) +- **redux:** introduce `withRedux` extension ([c5fa930](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/c5fa930)) + +### 🩹 Fixes + +- linting ([3528c2e](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/3528c2e)) +- **devtools:** ssr mode ([0fa5e67](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/0fa5e67)) +- **redux:** fix `never` type in reducer ([164585b](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/164585b)) +- **redux:** multiple effects can subscribe to the same action ([12d0077](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/12d0077)) +- **redux:** remove parameter from `noPayload` action functions ([0e83882](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/0e83882)) + +### ❤️ Thank You + +- Basti Hoffmann @bohoffi +- Manfred Steyer +- mikezks @mikezks +- Rainer Hahnekamp @rainerhahnekamp + +## 0.1.1 (2024-04-20) + + +### 🩹 Fixes + +- **redux:** multiple effects can subscribe to the same action ([12d0077](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/12d0077)) +- **redux:** remove parameter from `noPayload` action functions ([0e83882](https://github.com/rainerhahnekamp/ngrx-toolkit/commit/0e83882)) + +### ❤️ Thank You + +- Rainer Hahnekamp @rainerhahnekamp + ## 0.1.0 (2024-03-02) diff --git a/libs/ngrx-toolkit/package.json b/libs/ngrx-toolkit/package.json index c4b46cd..6049e39 100644 --- a/libs/ngrx-toolkit/package.json +++ b/libs/ngrx-toolkit/package.json @@ -1,6 +1,6 @@ { "name": "@angular-architects/ngrx-toolkit", - "version": "0.1.2", + "version": "0.1.0", "license": "MIT", "repository": { "type": "GitHub", diff --git a/npmrc b/npmrc new file mode 100644 index 0000000..0db3279 --- /dev/null +++ b/npmrc @@ -0,0 +1,3 @@ +{ + +} diff --git a/nx.json b/nx.json index 6192a9f..6021314 100644 --- a/nx.json +++ b/nx.json @@ -31,6 +31,14 @@ "{workspaceRoot}/.eslintignore", "{workspaceRoot}/eslint.config.js" ] + }, + "nx-release-publish": { + "dependsOn": [ + "build" + ], + "options": { + "packageRoot": "dist/libs/ngrx-toolkit" + } } }, "namedInputs": {