From 9283a7e2b68125908241cd931dde0228d70fa164 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 21 May 2026 10:07:02 +0000 Subject: [PATCH] chore: version packages --- .changeset/client-foldkit-scaffold.md | 14 ------------- .changeset/curly-dragons-poke.md | 6 ------ .changeset/fine-dragons-worry.md | 5 ----- .changeset/rename-client-react.md | 9 --------- .changeset/strict-crews-speak.md | 5 ----- apps/cli/CHANGELOG.md | 29 +++++++++++++++++++++++++++ apps/cli/package.json | 2 +- 7 files changed, 30 insertions(+), 40 deletions(-) delete mode 100644 .changeset/client-foldkit-scaffold.md delete mode 100644 .changeset/curly-dragons-poke.md delete mode 100644 .changeset/fine-dragons-worry.md delete mode 100644 .changeset/rename-client-react.md delete mode 100644 .changeset/strict-crews-speak.md diff --git a/.changeset/client-foldkit-scaffold.md b/.changeset/client-foldkit-scaffold.md deleted file mode 100644 index 8094fd6..0000000 --- a/.changeset/client-foldkit-scaffold.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -"stack-effect": minor ---- - -add `client-foldkit` target kind. - -Includes four feature modules: - -- `http-api-foldkit-client` -- `http-rpc-foldkit-client` -- `ws-presence-foldkit-client` -- `chat-foldkit-client` - -also added new deterministic AST-based composition via new `ts-object-field` and `namespaceImport` contribution primitives. diff --git a/.changeset/curly-dragons-poke.md b/.changeset/curly-dragons-poke.md deleted file mode 100644 index fa0af07..0000000 --- a/.changeset/curly-dragons-poke.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"stack-effect": minor ---- - -add JSX slot injection system and upgrade client templates to shadcn components. - diff --git a/.changeset/fine-dragons-worry.md b/.changeset/fine-dragons-worry.md deleted file mode 100644 index 48dde38..0000000 --- a/.changeset/fine-dragons-worry.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"stack-effect": patch ---- - -correct shadcn config filename and deduplicate finalize scripts diff --git a/.changeset/rename-client-react.md b/.changeset/rename-client-react.md deleted file mode 100644 index c1ba7db..0000000 --- a/.changeset/rename-client-react.md +++ /dev/null @@ -1,9 +0,0 @@ ---- -"stack-effect": patch ---- - -rename `client` target kind to `client-react` and prefix client module IDs with `react` - -- `http-api-client` becomes `http-api-react-client` -- `http-rpc-client` becomes `http-rpc-react-client` -- `ws-presence-client` becomes `ws-presence-react-client` diff --git a/.changeset/strict-crews-speak.md b/.changeset/strict-crews-speak.md deleted file mode 100644 index 83176e5..0000000 --- a/.changeset/strict-crews-speak.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"stack-effect": patch ---- - -update cli version to use package version diff --git a/apps/cli/CHANGELOG.md b/apps/cli/CHANGELOG.md index 0c5a2f8..288d0fe 100644 --- a/apps/cli/CHANGELOG.md +++ b/apps/cli/CHANGELOG.md @@ -1,5 +1,34 @@ # stack-effect +## 0.5.0 + +### Minor Changes + +- [#130](https://github.com/lloydrichards/stack-effect/pull/130) [`2228396`](https://github.com/lloydrichards/stack-effect/commit/22283964ec26cfb503aa4d88f5d67b3640d5abe0) Thanks [@lloydrichards](https://github.com/lloydrichards)! - add `client-foldkit` target kind. + + Includes four feature modules: + + - `http-api-foldkit-client` + - `http-rpc-foldkit-client` + - `ws-presence-foldkit-client` + - `chat-foldkit-client` + + also added new deterministic AST-based composition via new `ts-object-field` and `namespaceImport` contribution primitives. + +- [#128](https://github.com/lloydrichards/stack-effect/pull/128) [`9959c69`](https://github.com/lloydrichards/stack-effect/commit/9959c69e3dd53d1a9ff2e22e22332abf9a1f2004) Thanks [@lloydrichards](https://github.com/lloydrichards)! - add JSX slot injection system and upgrade client templates to shadcn components. + +### Patch Changes + +- [#127](https://github.com/lloydrichards/stack-effect/pull/127) [`1983994`](https://github.com/lloydrichards/stack-effect/commit/198399421bbd7966425a9918aead48882cf358ef) Thanks [@lloydrichards](https://github.com/lloydrichards)! - correct shadcn config filename and deduplicate finalize scripts + +- [#129](https://github.com/lloydrichards/stack-effect/pull/129) [`4a3acc8`](https://github.com/lloydrichards/stack-effect/commit/4a3acc84f5a1573962d3f5f1394bd61c28c04bea) Thanks [@lloydrichards](https://github.com/lloydrichards)! - rename `client` target kind to `client-react` and prefix client module IDs with `react` + + - `http-api-client` becomes `http-api-react-client` + - `http-rpc-client` becomes `http-rpc-react-client` + - `ws-presence-client` becomes `ws-presence-react-client` + +- [#125](https://github.com/lloydrichards/stack-effect/pull/125) [`6204bc1`](https://github.com/lloydrichards/stack-effect/commit/6204bc169ba45bc8beee080d9221f60bdd2d6a01) Thanks [@lloydrichards](https://github.com/lloydrichards)! - update cli version to use package version + ## 0.4.0 ### Minor Changes diff --git a/apps/cli/package.json b/apps/cli/package.json index fbb8244..52a7fdf 100644 --- a/apps/cli/package.json +++ b/apps/cli/package.json @@ -1,6 +1,6 @@ { "name": "stack-effect", - "version": "0.4.0", + "version": "0.5.0", "description": "Scaffolding CLI for full-stack TypeScript apps built on Effect", "license": "MIT", "type": "module",