diff --git a/CHANGELOG.md b/CHANGELOG.md index 549b57f..6533db8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,17 +1,25 @@ # Changelog +# [0.6.0](https://github.com/unternet-co/kernel/compare/v0.5.0...v0.6.0) (2025-08-01) + +- add system prompt ([#44](https://github.com/unternet-co/kernel/issues/44)) ([d92415d](https://github.com/unternet-co/kernel/commit/d92415dff1cf877a5b322c58c4787c96ca39b14e)) +- implement processes ([#45](https://github.com/unternet-co/kernel/issues/45)) ([3084f42](https://github.com/unternet-co/kernel/commit/3084f42f275e0214dccf16dc7b64994ba82ef514)) +- refined processes ([#47](https://github.com/unternet-co/kernel/issues/47)) ([244c40a](https://github.com/unternet-co/kernel/commit/244c40a5cb0420017b6b289f52994db82ba57d7d)) +- add runtime to docs ([#46](https://github.com/unternet-co/kernel/issues/46)) ([dddb058](https://github.com/unternet-co/kernel/commit/dddb0584e596d16ed76142115042d6060919d497)) +- make cli compatible with kernel changes ([#48](https://github.com/unternet-co/kernel/issues/48)) ([8306dd7](https://github.com/unternet-co/kernel/commit/8306dd707cf54c2b0dbac508ed3ed0a70cd2ff97)) + # [0.5.0](https://github.com/unternet-co/kernel/compare/v0.4.0...v0.5.0) (2025-07-03) -* Add async messaging ([#42](https://github.com/unternet-co/kernel/issues/42)) ([cd6d278](https://github.com/unternet-co/kernel/commit/cd6d2784996b2ab3cb850b8e4645899bc2759501)) +- Add async messaging ([#42](https://github.com/unternet-co/kernel/issues/42)) ([cd6d278](https://github.com/unternet-co/kernel/commit/cd6d2784996b2ab3cb850b8e4645899bc2759501)) ## [0.4.0](https://github.com/unternet-co/kernel/compare/v0.3.0...v0.4.0) (2025-06-25) -* Add support for interleaved responses ([#36](https://github.com/unternet-co/kernel/issues/36)) ([d7e05e6](https://github.com/unternet-co/kernel/commit/d7e05e6bbe8383ca4adacacebbfc6bd7cd663e31)) +- Add support for interleaved responses ([#36](https://github.com/unternet-co/kernel/issues/36)) ([d7e05e6](https://github.com/unternet-co/kernel/commit/d7e05e6bbe8383ca4adacacebbfc6bd7cd663e31)) ## [0.3.0](https://github.com/unternet-co/kernel/compare/v0.2.0...v0.3.0) (2025-06-25) -* Add tool use & improve example project ([#24](https://github.com/unternet-co/kernel/issues/24)) ([9f98bdd](https://github.com/unternet-co/kernel/commit/9f98bddda17da0872cab74b428a90eb801c097ea)) +- Add tool use & improve example project ([#24](https://github.com/unternet-co/kernel/issues/24)) ([9f98bdd](https://github.com/unternet-co/kernel/commit/9f98bddda17da0872cab74b428a90eb801c097ea)) ## 0.2.0 (2025-06-23) -* Add basic kernel chat functionality ([#17](https://github.com/unternet-co/kernel/issues/17)) ([87d01b2](https://github.com/unternet-co/kernel/commit/87d01b2ccefa2a90c848a54db0dc71e8587645ca)) +- Add basic kernel chat functionality ([#17](https://github.com/unternet-co/kernel/issues/17)) ([87d01b2](https://github.com/unternet-co/kernel/commit/87d01b2ccefa2a90c848a54db0dc71e8587645ca)) diff --git a/package-lock.json b/package-lock.json index 681bf83..fc34512 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@unternet/kernel", - "version": "0.5.0", + "version": "0.6.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@unternet/kernel", - "version": "0.5.0", + "version": "0.6.0", "license": "MIT", "dependencies": { "ai": "^4.3.16", diff --git a/package.json b/package.json index a8816b5..7462341 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@unternet/kernel", - "version": "0.5.0", + "version": "0.6.0", "description": "The cognitive engine for intelligent applications.", "main": "dist/index.js", "type": "module",