Skip to content

Commit 016a1dd

Browse files
authored
Merge pull request #1 from rezigned/release-please--branches--main
chore: release main
2 parents ef9365f + ebe90f6 commit 016a1dd

File tree

9 files changed

+38
-14
lines changed

9 files changed

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

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## [0.1.0](https://github.com/rezigned/tur/compare/tur-v0.0.1...tur-v0.1.0) (2025-08-10)
4+
5+
6+
### Features
7+
8+
* initial release of Tur - Turing Machine Language ([1db363e](https://github.com/rezigned/tur/commit/1db363e0f19758afa17bd3e52e423645cff57b4b))

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.0.1"
31+
version = "0.1.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: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## [0.1.0](https://github.com/rezigned/tur/compare/tur-cli-v0.0.1...tur-cli-v0.1.0) (2025-08-10)
4+
5+
6+
### Features
7+
8+
* initial release of Tur - Turing Machine Language ([1db363e](https://github.com/rezigned/tur/commit/1db363e0f19758afa17bd3e52e423645cff57b4b))

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.0.1"
3+
version = "0.1.0"
44
description = "Command-line interface for Turing machine simulator"
55
authors.workspace = true
66
edition.workspace = true
@@ -15,5 +15,5 @@ name = "tur-cli"
1515
path = "src/main.rs"
1616

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

platforms/tui/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changelog
2+
3+
## [0.1.0](https://github.com/rezigned/tur/compare/tur-tui-v0.0.1...tur-tui-v0.1.0) (2025-08-10)
4+
5+
6+
### Features
7+
8+
* initial release of Tur - Turing Machine Language ([1db363e](https://github.com/rezigned/tur/commit/1db363e0f19758afa17bd3e52e423645cff57b4b))

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.0.1"
3+
version = "0.1.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.0.1" }
18+
tur = { path = "../../", version = "0.1.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.0.1"
3+
version = "0.1.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.0.1" }
10+
tur = { path = "../../", version = "0.1.0" }
1111
action = { path = "../action/", version = "0.0.1" }
1212
wasm-bindgen = "0.2"
1313
js-sys = "0.3"

0 commit comments

Comments
 (0)