Skip to content

Commit 5767656

Browse files
chore: release main
1 parent 6a6723c commit 5767656

File tree

9 files changed

+54
-14
lines changed

9 files changed

+54
-14
lines changed
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
".": "0.1.0",
3-
"platforms/cli": "0.1.0",
4-
"platforms/tui": "0.1.0"
2+
".": "0.2.0",
3+
"platforms/cli": "0.2.0",
4+
"platforms/tui": "0.2.0"
55
}

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# Changelog
22

3+
## [0.2.0](https://github.com/rezigned/tur/compare/tur-v0.1.0...tur-v0.2.0) (2025-08-24)
4+
5+
6+
### Features
7+
8+
* add execution mode (Normal halts on undefined transitions, Strict treats them as errors) + refactor ([b23fc38](https://github.com/rezigned/tur/commit/b23fc38129243bb8904993fc021e85f7627bbf92))
9+
* add execution mode + refactor ([6a6723c](https://github.com/rezigned/tur/commit/6a6723c9b21e2394672192f9a44593cee7470c19))
10+
11+
12+
### Bug Fixes
13+
14+
* improve TUI layout ([356683d](https://github.com/rezigned/tur/commit/356683d4da42cf8cb8f141f90edc55be372175a8))
15+
* **tur-cli:** remove -p option and make program a mandatory argument so it can be chained multiple times with pipe (composable) ([9f33ce7](https://github.com/rezigned/tur/commit/9f33ce7a18333353c61c2fa31ff9c480f690e5b6))
16+
317
## [0.1.0](https://github.com/rezigned/tur/compare/tur-v0.0.1...tur-v0.1.0) (2025-08-10)
418

519

Cargo.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ regex = "1.10"
2828
# Core library as root package
2929
[package]
3030
name = "tur"
31-
version = "0.1.0"
31+
version = "0.2.0"
3232
description = "Turing Machine Language - Parser, interpreter, and execution engine"
3333
authors.workspace = true
3434
edition.workspace = true

platforms/cli/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.2.0](https://github.com/rezigned/tur/compare/tur-cli-v0.1.0...tur-cli-v0.2.0) (2025-08-24)
4+
5+
6+
### Features
7+
8+
* add execution mode (Normal halts on undefined transitions, Strict treats them as errors) + refactor ([b23fc38](https://github.com/rezigned/tur/commit/b23fc38129243bb8904993fc021e85f7627bbf92))
9+
* add execution mode + refactor ([6a6723c](https://github.com/rezigned/tur/commit/6a6723c9b21e2394672192f9a44593cee7470c19))
10+
11+
12+
### Bug Fixes
13+
14+
* **tur-cli:** remove -p option and make program a mandatory argument so it can be chained multiple times with pipe (composable) ([9f33ce7](https://github.com/rezigned/tur/commit/9f33ce7a18333353c61c2fa31ff9c480f690e5b6))
15+
316
## [0.1.0](https://github.com/rezigned/tur/compare/tur-cli-v0.0.1...tur-cli-v0.1.0) (2025-08-10)
417

518

platforms/cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tur-cli"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "Command-line interface for Turing machine simulator"
55
authors.workspace = true
66
edition.workspace = true
@@ -15,6 +15,6 @@ name = "tur-cli"
1515
path = "src/main.rs"
1616

1717
[dependencies]
18-
tur = { path = "../../", version = "0.1.0" }
18+
tur = { path = "../../", version = "0.2.0" }
1919
clap = { version = "4.0", features = ["derive"] }
2020
atty = "0.2.14"

platforms/tui/CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Changelog
22

3+
## [0.2.0](https://github.com/rezigned/tur/compare/tur-tui-v0.1.0...tur-tui-v0.2.0) (2025-08-24)
4+
5+
6+
### Features
7+
8+
* add execution mode (Normal halts on undefined transitions, Strict treats them as errors) + refactor ([b23fc38](https://github.com/rezigned/tur/commit/b23fc38129243bb8904993fc021e85f7627bbf92))
9+
* add execution mode + refactor ([6a6723c](https://github.com/rezigned/tur/commit/6a6723c9b21e2394672192f9a44593cee7470c19))
10+
11+
12+
### Bug Fixes
13+
14+
* improve TUI layout ([356683d](https://github.com/rezigned/tur/commit/356683d4da42cf8cb8f141f90edc55be372175a8))
15+
316
## [0.1.0](https://github.com/rezigned/tur/compare/tur-tui-v0.0.1...tur-tui-v0.1.0) (2025-08-10)
417

518

platforms/tui/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "tur-tui"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
description = "Terminal user interface for Turing machine simulator"
55
authors.workspace = true
66
edition.workspace = true
@@ -15,7 +15,7 @@ name = "tur-tui"
1515
path = "src/main.rs"
1616

1717
[dependencies]
18-
tur = { path = "../../", version = "0.1.0" }
18+
tur = { path = "../../", version = "0.2.0" }
1919
action = { path = "../action/", version = "0.0.1" }
2020
crossterm = "0.29"
2121
ratatui = "0.29.0"

platforms/web/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
[package]
22
name = "tur-web"
3-
version = "0.1.0"
3+
version = "0.2.0"
44
authors.workspace = true
55
edition.workspace = true
66
license.workspace = true
77
description = "Web frontend for Turing machine simulator"
88

99
[dependencies]
10-
tur = { path = "../../", version = "0.1.0" }
10+
tur = { path = "../../", version = "0.2.0" }
1111
action = { path = "../action/", version = "0.0.1" }
1212
wasm-bindgen = "0.2"
1313
js-sys = "0.3"

0 commit comments

Comments
 (0)