@turing-machine-js/library-binary-numbers-bare 5.0.0 → 6.0.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 +8 -0
- package/README.md +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ 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.0.0] - 2026-05-09
|
|
8
|
+
|
|
9
|
+
### Changed (BREAKING)
|
|
10
|
+
|
|
11
|
+
- **`peerDependencies."@turing-machine-js/machine"` widened from `^5.0.0` to `^6.0.0`** to match the v6 lockstep. Consumers pinned to `@turing-machine-js/machine@5` will see an unmet-peer warning when installing this version.
|
|
12
|
+
|
|
13
|
+
Released in lockstep with `@turing-machine-js/machine` 6.0.0. No source or behavior changes in this package beyond the peer-dep widening.
|
|
14
|
+
|
|
7
15
|
## [5.0.0] - 2026-05-09
|
|
8
16
|
|
|
9
17
|
### Changed (BREAKING)
|
package/README.md
CHANGED
|
@@ -74,7 +74,7 @@ The marker library's extra states are mostly bookkeeping for the `^`/`$` markers
|
|
|
74
74
|
|
|
75
75
|
For a teaching context, both libraries shipping in parallel makes the cost of representation choices tangible.
|
|
76
76
|
|
|
77
|
-
See the rendered Mermaid graphs for every state in [`states.md`](states.md) (
|
|
77
|
+
See the rendered Mermaid graphs for every state in [`states.md`](states.md) (regenerated via `npm run docs:states` from the repo root; the spec at `src/graphs.spec.ts` only verifies structural properties of the graphs, not the markdown file).
|
|
78
78
|
|
|
79
79
|
## Links
|
|
80
80
|
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@turing-machine-js/library-binary-numbers-bare",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "6.0.1",
|
|
4
4
|
"description": "Single-number binary arithmetic on a 3-symbol alphabet (blank, 0, 1) — same operations as @turing-machine-js/library-binary-numbers but without ^/$ markers. Side-by-side with the marker-based library for learning the trade-off.",
|
|
5
5
|
"engines": {
|
|
6
6
|
"npm": ">=7.0.0"
|
|
7
7
|
},
|
|
8
|
-
"author": "Ruslan Gilmullin <
|
|
8
|
+
"author": "Ruslan Gilmullin <mellonis@yandex.ru>",
|
|
9
9
|
"homepage": "https://github.com/mellonis/turing-machine-js#readme",
|
|
10
10
|
"license": "GPL-3.0-or-later",
|
|
11
11
|
"publishConfig": {
|
|
@@ -28,7 +28,7 @@
|
|
|
28
28
|
"teaching"
|
|
29
29
|
],
|
|
30
30
|
"peerDependencies": {
|
|
31
|
-
"@turing-machine-js/machine": "^
|
|
31
|
+
"@turing-machine-js/machine": "^6.0.0"
|
|
32
32
|
},
|
|
33
33
|
"main": "dist/index.cjs",
|
|
34
34
|
"module": "dist/index.mjs",
|
|
@@ -41,5 +41,5 @@
|
|
|
41
41
|
"default": "./dist/index.mjs"
|
|
42
42
|
}
|
|
43
43
|
},
|
|
44
|
-
"gitHead": "
|
|
44
|
+
"gitHead": "d7ebca4e8379a548e3ca97eb83e96387de2cda32"
|
|
45
45
|
}
|