Skip to content

Commit 0453b17

Browse files
chore: release main
1 parent b18cb95 commit 0453b17

File tree

9 files changed

+36
-14
lines changed

9 files changed

+36
-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.1.1",
3+
"platforms/cli": "0.1.1",
4+
"platforms/tui": "0.1.1"
55
}

CHANGELOG.md

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

3+
## [0.1.1](https://github.com/rezigned/tur/compare/tur-v0.1.0...tur-v0.1.1) (2025-08-12)
4+
5+
6+
### Bug Fixes
7+
8+
* improve TUI layout ([356683d](https://github.com/rezigned/tur/commit/356683d4da42cf8cb8f141f90edc55be372175a8))
9+
* **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))
10+
311
## [0.1.0](https://github.com/rezigned/tur/compare/tur-v0.0.1...tur-v0.1.0) (2025-08-10)
412

513

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.1.1"
3232
description = "Turing Machine Language - Parser, interpreter, and execution engine"
3333
authors.workspace = true
3434
edition.workspace = true

platforms/cli/CHANGELOG.md

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

3+
## [0.1.1](https://github.com/rezigned/tur/compare/tur-cli-v0.1.0...tur-cli-v0.1.1) (2025-08-12)
4+
5+
6+
### Bug Fixes
7+
8+
* **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))
9+
310
## [0.1.0](https://github.com/rezigned/tur/compare/tur-cli-v0.0.1...tur-cli-v0.1.0) (2025-08-10)
411

512

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.1.1"
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.1.1" }
1919
clap = { version = "4.0", features = ["derive"] }
2020
atty = "0.2.14"

platforms/tui/CHANGELOG.md

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

3+
## [0.1.1](https://github.com/rezigned/tur/compare/tur-tui-v0.1.0...tur-tui-v0.1.1) (2025-08-12)
4+
5+
6+
### Bug Fixes
7+
8+
* improve TUI layout ([356683d](https://github.com/rezigned/tur/commit/356683d4da42cf8cb8f141f90edc55be372175a8))
9+
310
## [0.1.0](https://github.com/rezigned/tur/compare/tur-tui-v0.0.1...tur-tui-v0.1.0) (2025-08-10)
411

512

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.1.1"
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.1.1" }
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.1.1"
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.1.1" }
1111
action = { path = "../action/", version = "0.0.1" }
1212
wasm-bindgen = "0.2"
1313
js-sys = "0.3"

0 commit comments

Comments
 (0)