@turing-machine-js/builder 6.3.0 → 7.0.0-alpha.1

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
@@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
6
 
7
+ ## [6.4.0] - 2026-05-19
8
+
9
+ Released in lockstep with `@turing-machine-js/machine` 6.4.0. No source or behavior changes in this package.
10
+
11
+ ## [6.3.0] - 2026-05-19
12
+
13
+ Released in lockstep with `@turing-machine-js/machine` 6.3.0. No source or behavior changes in this package.
14
+
15
+ ## [6.2.0] - 2026-05-19 [SUPERSEDED by 6.3.0]
16
+
17
+ > ⚠️ **Lockstep release with `@turing-machine-js/machine` 6.2.0**, which was itself superseded by 6.3.0. No source changes in this package. See the engine's [6.2.0 CHANGELOG entry](../machine/CHANGELOG.md) for context.
18
+
19
+ ## [6.1.0] - 2026-05-16
20
+
21
+ Released in lockstep with `@turing-machine-js/machine` 6.1.0. No source or behavior changes in this package.
22
+
7
23
  ## [6.0.0] - 2026-05-09
8
24
 
9
25
  ### Changed (BREAKING)
package/README.md CHANGED
@@ -43,7 +43,7 @@ The state-table format is intentionally minimal. It does **not** support:
43
43
 
44
44
  - **OR-patterns** (matching multiple current symbols with one transition row). For `tapeBlock.symbol('^10$')` style patterns, use the raw `@turing-machine-js/machine` API.
45
45
  - **Multi-tape machines** (`buildMachine` is single-tape only).
46
- - **`withOverrodeHaltState` composition** (the subroutine-call mechanism). For composed machines like `library-binary-numbers`'s `minusOne`, use the raw API.
46
+ - **`withOverriddenHaltState` composition** (the subroutine-call mechanism). For composed machines like `library-binary-numbers`'s `minusOne`, use the raw API.
47
47
 
48
48
  If you need any of the above, the inline state-table example in [`@turing-machine-js/machine`'s README](../machine/README.md) shows how to write your own `buildMachine`-equivalent in ~30 lines, and you can extend it to fit your case.
49
49
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turing-machine-js/builder",
3
- "version": "6.3.0",
3
+ "version": "7.0.0-alpha.1",
4
4
  "description": "A turing machine builder — declarative state-table construction. Not actively developed by the author; the same state-table pattern is also shown as an inline example in @turing-machine-js/machine's README. Contributions welcome.",
5
5
  "engines": {
6
6
  "npm": ">=7.0.0"
@@ -25,7 +25,7 @@
25
25
  "builder"
26
26
  ],
27
27
  "peerDependencies": {
28
- "@turing-machine-js/machine": "^6.0.0"
28
+ "@turing-machine-js/machine": "^7.0.0-alpha.1"
29
29
  },
30
30
  "scripts": {
31
31
  "build": "tsc --build --verbose tsconfig.build.json && node ../../scripts/build-node-entries.mjs --package=@turing-machine-js/builder",
@@ -42,5 +42,5 @@
42
42
  "default": "./dist/index.mjs"
43
43
  }
44
44
  },
45
- "gitHead": "6be43b1e88c4c562c9c11b495b285ff114f86b37"
45
+ "gitHead": "0d52695e614d12547ba73992c00cd48732b1e8c1"
46
46
  }