Skip to content

Commit d4c48c5

Browse files
committed
chore: Release Triton VM v0.42.0 alpha 10
⚡️ Performance - *(test)* Remove super slow try-build test (65545fe) ⚙️ Miscellaneous - Use “main” & “aux over “base” & “ext” (07fdf15) - (!) Break cyclic build dependency (f594167) ♻️ Refactor - (!) Remove generic parameter from FRI (05c6be8) 🛠 Build - Remove Makefile (d88a761) changelog: ignore
1 parent f594167 commit d4c48c5

File tree

2 files changed

+23
-5
lines changed

2 files changed

+23
-5
lines changed

Cargo.toml

+22-5
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ lto = "thin"
1818
lto = "thin"
1919

2020
[workspace.package]
21-
version = "0.42.0-alpha.9"
21+
version = "0.42.0-alpha.10"
2222
edition = "2021"
2323
authors = ["Triton Software AG"]
2424
license = "Apache-2.0"
@@ -27,21 +27,38 @@ repository = "https://github.com/TritonVM/triton-vm"
2727
readme = "README.md"
2828
documentation = "https://triton-vm.org/spec/"
2929

30+
[workspace.dependencies.air]
31+
version = "0.42.0-alpha.10"
32+
path = "triton-air"
33+
package = "triton-air"
34+
35+
[workspace.dependencies.constraint-builder]
36+
version = "0.42.0-alpha.10"
37+
path = "triton-constraint-builder"
38+
package = "triton-constraint-builder"
39+
40+
41+
[workspace.dependencies.constraint-circuit]
42+
version = "0.42.0-alpha.10"
43+
path = "triton-constraint-circuit"
44+
package = "triton-constraint-circuit"
45+
46+
[workspace.dependencies.isa]
47+
version = "0.42.0-alpha.10"
48+
path = "triton-isa"
49+
package = "triton-isa"
50+
3051
[workspace.dependencies]
31-
air = { path = "triton-air", package = "triton-air" }
3252
anyhow = "1.0"
3353
arbitrary = { version = "1", features = ["derive"] }
3454
assert2 = "0.3"
3555
colored = "2.1"
36-
constraint-builder = { path = "triton-constraint-builder", package = "triton-constraint-builder" }
37-
constraint-circuit = { path = "triton-constraint-circuit", package = "triton-constraint-circuit" }
3856
clap = { version = "4", features = ["derive", "cargo", "wrap_help", "unicode", "string"] }
3957
criterion = { version = "0.5", features = ["html_reports"] }
4058
directories = "5"
4159
fs-err = "2.11.0"
4260
get-size = "0.1.4"
4361
indexmap = "2.2.6"
44-
isa = { path = "triton-isa", package = "triton-isa" }
4562
itertools = "0.13"
4663
lazy_static = "1.5"
4764
ndarray = { version = "0.16", features = ["rayon"] }

cliff.toml

+1
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ commit_parsers = [
5757
{ body = ".*security", group = "<!-- 70 --> 🔒️ Security" },
5858
{ message = "^revert", group = "<!-- 80 --> ⏪️ Revert" },
5959
{ message = "^style", group = "<!-- 90 --> 🎨 Styling" },
60+
{ message = "^build", group = "<!-- 95 --> 🛠 Build" },
6061
{ footer = "^changelog: ?ignore", skip = true },
6162
]
6263

0 commit comments

Comments
 (0)