Skip to content

Commit

Permalink
Merge branch 'v0.2-beta' into 'main'
Browse files Browse the repository at this point in the history
v0.2.22-beta

See merge request mech-lang/mech!86
  • Loading branch information
cmontella committed Dec 2, 2024
2 parents 889a983 + 919ab8b commit 70d08a2
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mech"
version = "0.2.21"
version = "0.2.22"
authors = ["Corey Montella <corey@mech-lang.org>"]
description = "Mech is a reactive programming language for building robots, games, and animations."
documentation = "https://mech-lang.org/docs"
Expand All @@ -18,9 +18,9 @@ gitlab = { repository = "mech-lang/mech", branch = "main" }
maintenance = { status = "actively-developed" }

[dependencies]
mech-core = "0.2.21"
mech-syntax = "0.2.21"
mech-interpreter = "0.2.21"
mech-core = "0.2.22"
mech-syntax = "0.2.22"
mech-interpreter = "0.2.22"
#mech-program = "0.2.2"
#mech-utilities = "0.2.2"

Expand Down
6 changes: 3 additions & 3 deletions src/interpreter/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mech-interpreter"
version = "0.2.21"
version = "0.2.22"
authors = ["Corey Montella <corey@mech-lang.org>"]
description = "The Mech language runtime."
documentation = "http://docs.mech-lang.org"
Expand Down Expand Up @@ -56,8 +56,8 @@ VectorD = []
MatrixD = []

[dependencies]
mech-core = "0.2.21"
mech-math = "0.2.22"
mech-core = "0.2.22"
mech-math = "0.2.23"

nalgebra = "0.33.2"
indexmap = "2.7.0"
Expand Down
4 changes: 2 additions & 2 deletions src/syntax/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "mech-syntax"
version = "0.2.21"
version = "0.2.22"
authors = ["Corey Montella <corey@mech-lang.org>"]
description = "A toolchain for compiling textual syntax into Mech blocks."
documentation = "http://docs.mech-lang.org"
Expand All @@ -21,7 +21,7 @@ default = []
no-std = ["mech-core/no-std", "rlibc"]

[dependencies]
mech-core = "0.2.21"
mech-core = "0.2.22"

hashbrown = "0.15.2"
lazy_static = "1.5.0"
Expand Down

0 comments on commit 70d08a2

Please sign in to comment.