From 370eb9f4358e671e4e49b11bdf813e9d9b824cd0 Mon Sep 17 00:00:00 2001 From: Lucas Carlson Date: Mon, 24 Aug 2026 16:48:35 -0700 Subject: [PATCH] release: bump to 0.14.2 Ships the documentation already on main. The package carries README.md and docs/ inside the tarball, and npmjs.com renders that README, so the fix for #22 does not reach a reader until a release goes out. Published 0.14.1 still shows the model example addressing runtime.ref(Cart, ...) under createRuntime, which throws, and says nothing about a process that installs and then waits claiming no work. That README is the artifact the original report was about. No runtime code changed. The Unreleased section becomes 0.14.2, dated, because the publish job reads that section to build the release notes. --- CHANGELOG.md | 3 +-- package.json | 2 +- src/version.ts | 2 +- 3 files changed, 3 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a1136cb..f1ad51a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # Changelog -## Unreleased +## 0.14.2 - 2026-08-24 - State that background pickup needs `runtime.run(signal)` ([#22](https://github.com/cardmagic/solid-objects-js/issues/22)). The @@ -15,7 +15,6 @@ `Cart.ref("cart-123")`, matching every other reference example in the documentation. `createRuntime()` deliberately leaves the process default unset, so the static form needs `configure()`. - - Add `examples/at-least-once` and `pnpm run test:at-least-once` ([#23](https://github.com/cardmagic/solid-objects-js/issues/23)): an executable proof that the at-least-once clause fires and that the diff --git a/package.json b/package.json index 30a2e70..62824aa 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "solid-objects", - "version": "0.14.1", + "version": "0.14.2", "description": "Race-free realtime state per application identity, backed by your SQL database", "type": "module", "license": "MIT", diff --git a/src/version.ts b/src/version.ts index cb02bb9..ded049d 100644 --- a/src/version.ts +++ b/src/version.ts @@ -1 +1 @@ -export const VERSION = "0.14.1" +export const VERSION = "0.14.2"