@toist/in 0.2.2 → 0.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,12 @@
2
2
 
3
3
  All notable changes to `@toist/in` are recorded here.
4
4
 
5
+ ## 0.3.0 — 2026-05-05
6
+
7
+ Lockstep version bump alongside the new `@toist/up` package. The scaffold
8
+ template's `_package.json` now pins `@toist/run` and `@toist/spec` to
9
+ `^0.3.0`. README mentions `bunx @toist/up` as the upgrade verb.
10
+
5
11
  ## 0.2.2 — 2026-05-05
6
12
 
7
13
  Lockstep version bump alongside `@toist/run@0.2.2` (UI MIME-type fix).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@toist/in",
3
- "version": "0.2.2",
3
+ "version": "0.3.0",
4
4
  "type": "module",
5
5
  "description": "Scaffold a new toist instance: bunx @toist/in <path>",
6
6
  "main": "./src/index.ts",
@@ -17,6 +17,15 @@ Open `http://localhost:3000` to use the UI.
17
17
  - `resources/*.yaml` — resource definitions (per resource-spec)
18
18
  - `data/` — runtime SQLite databases (gitignored)
19
19
 
20
+ ## Upgrading
21
+
22
+ ```sh
23
+ bunx @toist/up
24
+ ```
25
+
26
+ Auto-detects every `@toist/*` dep in this directory's `package.json`
27
+ and bumps them to the latest published version.
28
+
20
29
  ## More
21
30
 
22
31
  Full quickstart and docs: https://toist.in
@@ -7,7 +7,7 @@
7
7
  "dev": "bun --watch start.ts"
8
8
  },
9
9
  "dependencies": {
10
- "@toist/run": "^0.2.2",
11
- "@toist/spec": "^0.2.2"
10
+ "@toist/run": "^0.3.0",
11
+ "@toist/spec": "^0.3.0"
12
12
  }
13
13
  }