Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/.release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
".": "0.1.0",
"platforms/cli": "0.1.0",
"platforms/tui": "0.1.0"
".": "0.2.0",
"platforms/cli": "0.2.0",
"platforms/tui": "0.2.0"
}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Changelog

## [0.2.0](https://github.com/rezigned/tur/compare/tur-v0.1.0...tur-v0.2.0) (2025-09-19)


### Features

* add execution mode (Normal halts on undefined transitions, Strict treats them as errors) + refactor ([b23fc38](https://github.com/rezigned/tur/commit/b23fc38129243bb8904993fc021e85f7627bbf92))
* add execution mode + refactor ([6a6723c](https://github.com/rezigned/tur/commit/6a6723c9b21e2394672192f9a44593cee7470c19))


### Bug Fixes

* improve TUI layout ([356683d](https://github.com/rezigned/tur/commit/356683d4da42cf8cb8f141f90edc55be372175a8))
* **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))

## [0.1.0](https://github.com/rezigned/tur/compare/tur-v0.0.1...tur-v0.1.0) (2025-08-10)


Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ regex = "1.10"
# Core library as root package
[package]
name = "tur"
version = "0.1.0"
version = "0.2.0"
description = "Turing Machine Language - Parser, interpreter, and execution engine"
authors.workspace = true
edition.workspace = true
Expand Down
13 changes: 13 additions & 0 deletions platforms/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.2.0](https://github.com/rezigned/tur/compare/tur-cli-v0.1.0...tur-cli-v0.2.0) (2025-09-19)


### Features

* add execution mode (Normal halts on undefined transitions, Strict treats them as errors) + refactor ([b23fc38](https://github.com/rezigned/tur/commit/b23fc38129243bb8904993fc021e85f7627bbf92))
* add execution mode + refactor ([6a6723c](https://github.com/rezigned/tur/commit/6a6723c9b21e2394672192f9a44593cee7470c19))


### Bug Fixes

* **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))

## [0.1.0](https://github.com/rezigned/tur/compare/tur-cli-v0.0.1...tur-cli-v0.1.0) (2025-08-10)


Expand Down
4 changes: 2 additions & 2 deletions platforms/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tur-cli"
version = "0.1.0"
version = "0.2.0"
description = "Command-line interface for Turing machine simulator"
authors.workspace = true
edition.workspace = true
Expand All @@ -15,6 +15,6 @@ name = "tur-cli"
path = "src/main.rs"

[dependencies]
tur = { path = "../../", version = "0.1.0" }
tur = { path = "../../", version = "0.2.0" }
clap = { version = "4.0", features = ["derive"] }
atty = "0.2.14"
13 changes: 13 additions & 0 deletions platforms/tui/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## [0.2.0](https://github.com/rezigned/tur/compare/tur-tui-v0.1.0...tur-tui-v0.2.0) (2025-09-19)


### Features

* add execution mode (Normal halts on undefined transitions, Strict treats them as errors) + refactor ([b23fc38](https://github.com/rezigned/tur/commit/b23fc38129243bb8904993fc021e85f7627bbf92))
* add execution mode + refactor ([6a6723c](https://github.com/rezigned/tur/commit/6a6723c9b21e2394672192f9a44593cee7470c19))


### Bug Fixes

* improve TUI layout ([356683d](https://github.com/rezigned/tur/commit/356683d4da42cf8cb8f141f90edc55be372175a8))

## [0.1.0](https://github.com/rezigned/tur/compare/tur-tui-v0.0.1...tur-tui-v0.1.0) (2025-08-10)


Expand Down
4 changes: 2 additions & 2 deletions platforms/tui/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "tur-tui"
version = "0.1.0"
version = "0.2.0"
description = "Terminal user interface for Turing machine simulator"
authors.workspace = true
edition.workspace = true
Expand All @@ -15,7 +15,7 @@ name = "tur-tui"
path = "src/main.rs"

[dependencies]
tur = { path = "../../", version = "0.1.0" }
tur = { path = "../../", version = "0.2.0" }
action = { path = "../action/", version = "0.0.1" }
crossterm = "0.29"
ratatui = "0.29.0"
Expand Down
4 changes: 2 additions & 2 deletions platforms/web/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
[package]
name = "tur-web"
version = "0.1.0"
version = "0.2.0"
authors.workspace = true
edition.workspace = true
license.workspace = true
description = "Web frontend for Turing machine simulator"

[dependencies]
tur = { path = "../../", version = "0.1.0" }
tur = { path = "../../", version = "0.2.0" }
action = { path = "../action/", version = "0.0.1" }
wasm-bindgen = "0.2"
js-sys = "0.3"
Expand Down