diff --git a/.changeset/brave-kiwis-film.md b/.changeset/brave-kiwis-film.md deleted file mode 100644 index 05a2ee3f..00000000 --- a/.changeset/brave-kiwis-film.md +++ /dev/null @@ -1,37 +0,0 @@ ---- -'@agile-ts/core': minor -'@agile-ts/react': minor -'@agile-ts/vue': minor -'@agile-ts/api': patch -'cra-template-agile': patch -'cra-template-agile-typescript': patch -'@agile-ts/event': patch -'@agile-ts/logger': patch -'@agile-ts/multieditor': patch -'@agile-ts/proxytree': patch -'@agile-ts/utils': patch ---- - -#### :rocket: New Feature -* `core`, `multieditor`, `react`, `vue` - * [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) -* `core` - * [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19)) - * [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19)) - -#### :bug: Bug Fix -* `core` - * [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19)) - -#### :nail_care: Polish -* `core`, `multieditor`, `react`, `vue` - * [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) -* `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue` - * [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19)) -* `core`, `event`, `react`, `vue` - * [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19)) -* `core`, `proxytree` - * [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19)) - -#### Committers: 1 -- BennoDev ([@bennodev19](https://github.com/bennodev19)) diff --git a/examples/react/develop/simple-counter/package.json b/examples/react/develop/simple-counter/package.json index 4ce637fc..acc7fde9 100644 --- a/examples/react/develop/simple-counter/package.json +++ b/examples/react/develop/simple-counter/package.json @@ -4,7 +4,7 @@ "private": true, "dependencies": { "@agile-ts/core": "^0.0.17", - "@agile-ts/react": "^0.0.18", + "@agile-ts/react": "^0.1.0", "react": "17.0.2", "react-dom": "17.0.2", "react-scripts": "4.0.0" diff --git a/packages/api/CHANGELOG.md b/packages/api/CHANGELOG.md index ef10289c..2ba2a1a7 100644 --- a/packages/api/CHANGELOG.md +++ b/packages/api/CHANGELOG.md @@ -1,5 +1,40 @@ # @agile-ts/api +## 0.0.19 + +### Patch Changes + +- 855a921: #### :rocket: New Feature + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core` + - [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19)) + - [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19)) + + #### :bug: Bug Fix + + - `core` + - [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19)) + + #### :nail_care: Polish + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue` + - [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19)) + - `core`, `event`, `react`, `vue` + - [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19)) + - `core`, `proxytree` + - [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19)) + + #### Committers: 1 + + - BennoDev ([@bennodev19](https://github.com/bennodev19)) + +- Updated dependencies [855a921] + - @agile-ts/utils@0.0.5 + ## 0.0.18 ### Patch Changes diff --git a/packages/api/package.json b/packages/api/package.json index 65803368..9946f0cc 100644 --- a/packages/api/package.json +++ b/packages/api/package.json @@ -1,6 +1,6 @@ { "name": "@agile-ts/api", - "version": "0.0.18", + "version": "0.0.19", "author": "BennoDev", "license": "MIT", "homepage": "https://agile-ts.org/", @@ -31,7 +31,7 @@ "@agile-ts/utils": "file:../utils" }, "dependencies": { - "@agile-ts/utils": "^0.0.4" + "@agile-ts/utils": "^0.0.5" }, "publishConfig": { "access": "public" diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index a098ef57..1de6b09e 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,43 @@ # Change Log +## 0.1.0 + +### Minor Changes + +- 855a921: #### :rocket: New Feature + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core` + - [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19)) + - [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19)) + + #### :bug: Bug Fix + + - `core` + - [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19)) + + #### :nail_care: Polish + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue` + - [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19)) + - `core`, `event`, `react`, `vue` + - [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19)) + - `core`, `proxytree` + - [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19)) + + #### Committers: 1 + + - BennoDev ([@bennodev19](https://github.com/bennodev19)) + +### Patch Changes + +- Updated dependencies [855a921] + - @agile-ts/logger@0.0.5 + - @agile-ts/utils@0.0.5 + ## 0.0.17 ### Patch Changes diff --git a/packages/core/package.json b/packages/core/package.json index c1b896fb..1463bafd 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@agile-ts/core", - "version": "0.0.17", + "version": "0.1.0", "author": "BennoDev", "license": "MIT", "homepage": "https://agile-ts.org/", @@ -44,8 +44,8 @@ "@agile-ts/utils": "file:../utils" }, "dependencies": { - "@agile-ts/utils": "^0.0.4", - "@agile-ts/logger": "^0.0.4" + "@agile-ts/utils": "^0.0.5", + "@agile-ts/logger": "^0.0.5" }, "publishConfig": { "access": "public" diff --git a/packages/cra-template-agile-typescript/CHANGELOG.md b/packages/cra-template-agile-typescript/CHANGELOG.md index 9df3da02..8d6ed312 100644 --- a/packages/cra-template-agile-typescript/CHANGELOG.md +++ b/packages/cra-template-agile-typescript/CHANGELOG.md @@ -1,5 +1,37 @@ # cra-template-agile-typescript +## 0.0.7 + +### Patch Changes + +- 855a921: #### :rocket: New Feature + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core` + - [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19)) + - [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19)) + + #### :bug: Bug Fix + + - `core` + - [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19)) + + #### :nail_care: Polish + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue` + - [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19)) + - `core`, `event`, `react`, `vue` + - [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19)) + - `core`, `proxytree` + - [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19)) + + #### Committers: 1 + + - BennoDev ([@bennodev19](https://github.com/bennodev19)) + ## 0.0.6 ### Patch Changes diff --git a/packages/cra-template-agile-typescript/package.json b/packages/cra-template-agile-typescript/package.json index 98410d13..e197030f 100644 --- a/packages/cra-template-agile-typescript/package.json +++ b/packages/cra-template-agile-typescript/package.json @@ -1,6 +1,6 @@ { "name": "cra-template-agile-typescript", - "version": "0.0.6", + "version": "0.0.7", "author": "BennoDev", "license": "MIT", "homepage": "https://agile-ts.org/", @@ -22,8 +22,8 @@ "react-scripts": "4.0.3", "@types/react": "^17.0.3", "@types/react-dom": "^17.0.3", - "@agile-ts/core": "^0.0.17", - "@agile-ts/react": "^0.0.18" + "@agile-ts/core": "^0.1.0", + "@agile-ts/react": "^0.1.0" }, "publishConfig": { "access": "public" diff --git a/packages/cra-template-agile/CHANGELOG.md b/packages/cra-template-agile/CHANGELOG.md index 66886419..d4908007 100644 --- a/packages/cra-template-agile/CHANGELOG.md +++ b/packages/cra-template-agile/CHANGELOG.md @@ -1,5 +1,37 @@ # cra-template-agile +## 0.0.7 + +### Patch Changes + +- 855a921: #### :rocket: New Feature + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core` + - [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19)) + - [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19)) + + #### :bug: Bug Fix + + - `core` + - [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19)) + + #### :nail_care: Polish + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue` + - [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19)) + - `core`, `event`, `react`, `vue` + - [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19)) + - `core`, `proxytree` + - [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19)) + + #### Committers: 1 + + - BennoDev ([@bennodev19](https://github.com/bennodev19)) + ## 0.0.6 ### Patch Changes diff --git a/packages/cra-template-agile/package.json b/packages/cra-template-agile/package.json index 3112343f..ed55bb30 100644 --- a/packages/cra-template-agile/package.json +++ b/packages/cra-template-agile/package.json @@ -1,6 +1,6 @@ { "name": "cra-template-agile", - "version": "0.0.6", + "version": "0.0.7", "author": "BennoDev", "license": "MIT", "homepage": "https://agile-ts.org/", @@ -20,8 +20,8 @@ "react": "^17.0.2", "react-dom": "^17.0.2", "react-scripts": "4.0.3", - "@agile-ts/core": "^0.0.17", - "@agile-ts/react": "^0.0.18" + "@agile-ts/core": "^0.1.0", + "@agile-ts/react": "^0.1.0" }, "publishConfig": { "access": "public" diff --git a/packages/event/CHANGELOG.md b/packages/event/CHANGELOG.md index 9a209799..99d8cffc 100644 --- a/packages/event/CHANGELOG.md +++ b/packages/event/CHANGELOG.md @@ -1,5 +1,40 @@ # Change Log +## 0.0.8 + +### Patch Changes + +- 855a921: #### :rocket: New Feature + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core` + - [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19)) + - [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19)) + + #### :bug: Bug Fix + + - `core` + - [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19)) + + #### :nail_care: Polish + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue` + - [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19)) + - `core`, `event`, `react`, `vue` + - [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19)) + - `core`, `proxytree` + - [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19)) + + #### Committers: 1 + + - BennoDev ([@bennodev19](https://github.com/bennodev19)) + +- Updated dependencies [855a921] + - @agile-ts/core@0.1.0 + ## 0.0.7 ### Patch Changes diff --git a/packages/event/package.json b/packages/event/package.json index 58a5e032..481e33a0 100644 --- a/packages/event/package.json +++ b/packages/event/package.json @@ -1,6 +1,6 @@ { "name": "@agile-ts/event", - "version": "0.0.7", + "version": "0.0.8", "author": "BennoDev", "license": "MIT", "homepage": "https://agile-ts.org/", @@ -33,7 +33,7 @@ }, "peerDependencies": { "react": "^16.13.1", - "@agile-ts/core": "^0.0.17" + "@agile-ts/core": "^0.1.0" }, "publishConfig": { "access": "public" diff --git a/packages/logger/CHANGELOG.md b/packages/logger/CHANGELOG.md index 63e653aa..86f7e31e 100644 --- a/packages/logger/CHANGELOG.md +++ b/packages/logger/CHANGELOG.md @@ -1,5 +1,40 @@ # @agile-ts/logger +## 0.0.5 + +### Patch Changes + +- 855a921: #### :rocket: New Feature + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core` + - [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19)) + - [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19)) + + #### :bug: Bug Fix + + - `core` + - [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19)) + + #### :nail_care: Polish + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue` + - [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19)) + - `core`, `event`, `react`, `vue` + - [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19)) + - `core`, `proxytree` + - [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19)) + + #### Committers: 1 + + - BennoDev ([@bennodev19](https://github.com/bennodev19)) + +- Updated dependencies [855a921] + - @agile-ts/utils@0.0.5 + ## 0.0.4 ### Patch Changes diff --git a/packages/logger/package.json b/packages/logger/package.json index 4976965b..b2e8b348 100644 --- a/packages/logger/package.json +++ b/packages/logger/package.json @@ -1,6 +1,6 @@ { "name": "@agile-ts/logger", - "version": "0.0.4", + "version": "0.0.5", "author": "BennoDev", "license": "MIT", "homepage": "https://agile-ts.org/", @@ -30,7 +30,7 @@ "@agile-ts/utils": "file:../utils" }, "dependencies": { - "@agile-ts/utils": "^0.0.4" + "@agile-ts/utils": "^0.0.5" }, "publishConfig": { "access": "public" diff --git a/packages/multieditor/CHANGELOG.md b/packages/multieditor/CHANGELOG.md index 44827530..d0b744cf 100644 --- a/packages/multieditor/CHANGELOG.md +++ b/packages/multieditor/CHANGELOG.md @@ -1,5 +1,40 @@ # @agile-ts/multieditor +## 0.0.18 + +### Patch Changes + +- 855a921: #### :rocket: New Feature + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core` + - [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19)) + - [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19)) + + #### :bug: Bug Fix + + - `core` + - [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19)) + + #### :nail_care: Polish + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue` + - [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19)) + - `core`, `event`, `react`, `vue` + - [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19)) + - `core`, `proxytree` + - [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19)) + + #### Committers: 1 + + - BennoDev ([@bennodev19](https://github.com/bennodev19)) + +- Updated dependencies [855a921] + - @agile-ts/core@0.1.0 + ## 0.0.17 ### Patch Changes diff --git a/packages/multieditor/package.json b/packages/multieditor/package.json index 3454f76f..97a29384 100644 --- a/packages/multieditor/package.json +++ b/packages/multieditor/package.json @@ -1,6 +1,6 @@ { "name": "@agile-ts/multieditor", - "version": "0.0.17", + "version": "0.0.18", "author": "BennoDev", "license": "MIT", "homepage": "https://agile-ts.org/", @@ -34,7 +34,7 @@ "@agile-ts/core": "file:../core" }, "peerDependencies": { - "@agile-ts/core": "^0.0.17" + "@agile-ts/core": "^0.1.0" }, "publishConfig": { "access": "public" diff --git a/packages/proxytree/CHANGELOG.md b/packages/proxytree/CHANGELOG.md index 66891369..f66267c8 100644 --- a/packages/proxytree/CHANGELOG.md +++ b/packages/proxytree/CHANGELOG.md @@ -1,5 +1,37 @@ # @agile-ts/proxytree +## 0.0.4 + +### Patch Changes + +- 855a921: #### :rocket: New Feature + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core` + - [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19)) + - [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19)) + + #### :bug: Bug Fix + + - `core` + - [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19)) + + #### :nail_care: Polish + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue` + - [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19)) + - `core`, `event`, `react`, `vue` + - [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19)) + - `core`, `proxytree` + - [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19)) + + #### Committers: 1 + + - BennoDev ([@bennodev19](https://github.com/bennodev19)) + ## 0.0.3 ### Patch Changes diff --git a/packages/proxytree/package.json b/packages/proxytree/package.json index 7bc10972..033e8c3c 100644 --- a/packages/proxytree/package.json +++ b/packages/proxytree/package.json @@ -1,6 +1,6 @@ { "name": "@agile-ts/proxytree", - "version": "0.0.3", + "version": "0.0.4", "author": "BennoDev", "license": "MIT", "homepage": "https://agile-ts.org/", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index c9176639..558c9434 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,43 @@ # Change Log +## 0.1.0 + +### Minor Changes + +- 855a921: #### :rocket: New Feature + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core` + - [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19)) + - [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19)) + + #### :bug: Bug Fix + + - `core` + - [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19)) + + #### :nail_care: Polish + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue` + - [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19)) + - `core`, `event`, `react`, `vue` + - [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19)) + - `core`, `proxytree` + - [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19)) + + #### Committers: 1 + + - BennoDev ([@bennodev19](https://github.com/bennodev19)) + +### Patch Changes + +- Updated dependencies [855a921] + - @agile-ts/core@0.1.0 + - @agile-ts/proxytree@0.0.4 + ## 0.0.18 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index 7b8cdd9e..922ce4ec 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@agile-ts/react", - "version": "0.0.18", + "version": "0.1.0", "author": "BennoDev", "license": "MIT", "homepage": "https://agile-ts.org/", @@ -45,8 +45,8 @@ }, "peerDependencies": { "react": "^16.13.1", - "@agile-ts/core": "^0.0.17", - "@agile-ts/proxytree": "^0.0.3" + "@agile-ts/core": "^0.1.0", + "@agile-ts/proxytree": "^0.0.4" }, "peerDependenciesMeta": { "react": { diff --git a/packages/utils/CHANGELOG.md b/packages/utils/CHANGELOG.md index c097ddba..69a0db77 100644 --- a/packages/utils/CHANGELOG.md +++ b/packages/utils/CHANGELOG.md @@ -1,5 +1,37 @@ # @agile-ts/utils +## 0.0.5 + +### Patch Changes + +- 855a921: #### :rocket: New Feature + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core` + - [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19)) + - [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19)) + + #### :bug: Bug Fix + + - `core` + - [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19)) + + #### :nail_care: Polish + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue` + - [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19)) + - `core`, `event`, `react`, `vue` + - [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19)) + - `core`, `proxytree` + - [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19)) + + #### Committers: 1 + + - BennoDev ([@bennodev19](https://github.com/bennodev19)) + ## 0.0.4 ### Patch Changes diff --git a/packages/utils/package.json b/packages/utils/package.json index a6a5d926..de768bba 100644 --- a/packages/utils/package.json +++ b/packages/utils/package.json @@ -1,6 +1,6 @@ { "name": "@agile-ts/utils", - "version": "0.0.4", + "version": "0.0.5", "author": "BennoDev", "license": "MIT", "homepage": "https://agile-ts.org/", diff --git a/packages/vue/CHANGELOG.md b/packages/vue/CHANGELOG.md index 7978a6b0..2ed76379 100644 --- a/packages/vue/CHANGELOG.md +++ b/packages/vue/CHANGELOG.md @@ -1,5 +1,42 @@ # @agile-ts/vue +## 0.1.0 + +### Minor Changes + +- 855a921: #### :rocket: New Feature + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core` + - [#160](https://github.com/agile-ts/agile/pull/160) added null option to Selector ([@bennodev19](https://github.com/bennodev19)) + - [#159](https://github.com/agile-ts/agile/pull/159) make compute method async compatible ([@bennodev19](https://github.com/bennodev19)) + + #### :bug: Bug Fix + + - `core` + - [#152](https://github.com/agile-ts/agile/pull/152) Fix remove selected Item loop ([@bennodev19](https://github.com/bennodev19)) + + #### :nail_care: Polish + + - `core`, `multieditor`, `react`, `vue` + - [#161](https://github.com/agile-ts/agile/pull/161) Subscribe to Group value or output ([@bennodev19](https://github.com/bennodev19)) + - `core`, `cra-template-agile-typescript`, `cra-template-agile`, `event`, `logger`, `multieditor`, `proxytree`, `react`, `utils`, `vue` + - [#153](https://github.com/agile-ts/agile/pull/153) refactor core descriptions ([@bennodev19](https://github.com/bennodev19)) + - `core`, `event`, `react`, `vue` + - [#154](https://github.com/agile-ts/agile/pull/154) Optimise Runtime ([@bennodev19](https://github.com/bennodev19)) + - `core`, `proxytree` + - [#150](https://github.com/agile-ts/agile/pull/150) Outsource log messages ([@bennodev19](https://github.com/bennodev19)) + + #### Committers: 1 + + - BennoDev ([@bennodev19](https://github.com/bennodev19)) + +### Patch Changes + +- Updated dependencies [855a921] + - @agile-ts/core@0.1.0 + ## 0.0.5 ### Patch Changes diff --git a/packages/vue/package.json b/packages/vue/package.json index 4aca4445..b1cc9931 100644 --- a/packages/vue/package.json +++ b/packages/vue/package.json @@ -1,6 +1,6 @@ { "name": "@agile-ts/vue", - "version": "0.0.5", + "version": "0.1.0", "author": "BennoDev", "license": "MIT", "homepage": "https://agile-ts.org/", @@ -34,7 +34,7 @@ "vue": "^2.6.12" }, "peerDependencies": { - "@agile-ts/core": "^0.0.17", + "@agile-ts/core": "^0.1.0", "vue": "^2.6.12" }, "peerDependenciesMeta": {