From a0d6f44e9080a5db83457ccdc853922bbeb82b17 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 20 Jul 2026 20:38:25 +0000 Subject: [PATCH] chore: version packages --- .changeset/alpine-framework-adapter.md | 5 ----- .changeset/lit-framework-adapter.md | 5 ----- .changeset/pinia-source-adapter.md | 5 ----- .changeset/redux-source-adapter.md | 5 ----- CHANGELOG.md | 12 ++++++++++++ package.json | 2 +- skills/tanstack-store/SKILL.md | 2 +- 7 files changed, 14 insertions(+), 22 deletions(-) delete mode 100644 .changeset/alpine-framework-adapter.md delete mode 100644 .changeset/lit-framework-adapter.md delete mode 100644 .changeset/pinia-source-adapter.md delete mode 100644 .changeset/redux-source-adapter.md diff --git a/.changeset/alpine-framework-adapter.md b/.changeset/alpine-framework-adapter.md deleted file mode 100644 index ef75c80..0000000 --- a/.changeset/alpine-framework-adapter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stainless-code/persist": minor ---- - -Add Alpine framework adapter (`./frameworks/alpine`) — `useHydrated` + `$hydrated` plugin over `HydrationSignal`. diff --git a/.changeset/lit-framework-adapter.md b/.changeset/lit-framework-adapter.md deleted file mode 100644 index 540142a..0000000 --- a/.changeset/lit-framework-adapter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stainless-code/persist": minor ---- - -Add Lit `HydrationController` framework adapter (`./frameworks/lit`). diff --git a/.changeset/pinia-source-adapter.md b/.changeset/pinia-source-adapter.md deleted file mode 100644 index a57afeb..0000000 --- a/.changeset/pinia-source-adapter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stainless-code/persist": minor ---- - -Add first-party Pinia source adapter (`./sources/pinia`) with shape-named `persistStore` over `persistSource`. diff --git a/.changeset/redux-source-adapter.md b/.changeset/redux-source-adapter.md deleted file mode 100644 index 17b7769..0000000 --- a/.changeset/redux-source-adapter.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@stainless-code/persist": minor ---- - -Add first-party Redux source adapter (`./sources/redux`) with `persistStore` and companion `persistableReducer` (classic + RTK). diff --git a/CHANGELOG.md b/CHANGELOG.md index fd61af0..75b8c9f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # @stainless-code/persist +## 0.3.0 + +### Minor Changes + +- [#34](https://github.com/stainless-code/persist/pull/34) [`470ef1d`](https://github.com/stainless-code/persist/commit/470ef1dfbd702c506674b6639d14f26acf921dc2) Thanks [@SutuSebastian](https://github.com/SutuSebastian)! - Add Alpine framework adapter (`./frameworks/alpine`) — `useHydrated` + `$hydrated` plugin over `HydrationSignal`. + +- [#34](https://github.com/stainless-code/persist/pull/34) [`470ef1d`](https://github.com/stainless-code/persist/commit/470ef1dfbd702c506674b6639d14f26acf921dc2) Thanks [@SutuSebastian](https://github.com/SutuSebastian)! - Add Lit `HydrationController` framework adapter (`./frameworks/lit`). + +- [#31](https://github.com/stainless-code/persist/pull/31) [`f7d4abc`](https://github.com/stainless-code/persist/commit/f7d4abcbb39c1f7c4d4ec0a63324188ec5d85c60) Thanks [@SutuSebastian](https://github.com/SutuSebastian)! - Add first-party Pinia source adapter (`./sources/pinia`) with shape-named `persistStore` over `persistSource`. + +- [#31](https://github.com/stainless-code/persist/pull/31) [`f7d4abc`](https://github.com/stainless-code/persist/commit/f7d4abcbb39c1f7c4d4ec0a63324188ec5d85c60) Thanks [@SutuSebastian](https://github.com/SutuSebastian)! - Add first-party Redux source adapter (`./sources/redux`) with `persistStore` and companion `persistableReducer` (classic + RTK). + ## 0.2.1 ### Patch Changes diff --git a/package.json b/package.json index e787241..b8eee5a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@stainless-code/persist", - "version": "0.2.1", + "version": "0.3.0", "description": "Hydration-aware persistence for any reactive store — zero-dep persistSource core; codecs, backends, cross-tab transport, source + framework hydration adapters ship as opt-in recipes", "keywords": [ "alpine", diff --git a/skills/tanstack-store/SKILL.md b/skills/tanstack-store/SKILL.md index da2c632..2a5810c 100644 --- a/skills/tanstack-store/SKILL.md +++ b/skills/tanstack-store/SKILL.md @@ -4,7 +4,7 @@ description: Persist a @tanstack/store Store or writable Atom with @stainless-co license: MIT metadata: library: "@stainless-code/persist" - library_version: "0.2.1" + library_version: "0.3.0" framework: "tanstack-store" sources: - README.md