Skip to content

Commit

Permalink
chore: Release Triton VM v0.42.0 alpha 10
Browse files Browse the repository at this point in the history
⚡️ 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
  • Loading branch information
jan-ferdinand committed Sep 10, 2024
1 parent f594167 commit d4c48c5
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 5 deletions.
27 changes: 22 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ lto = "thin"
lto = "thin"

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

[workspace.dependencies.air]
version = "0.42.0-alpha.10"
path = "triton-air"
package = "triton-air"

[workspace.dependencies.constraint-builder]
version = "0.42.0-alpha.10"
path = "triton-constraint-builder"
package = "triton-constraint-builder"


[workspace.dependencies.constraint-circuit]
version = "0.42.0-alpha.10"
path = "triton-constraint-circuit"
package = "triton-constraint-circuit"

[workspace.dependencies.isa]
version = "0.42.0-alpha.10"
path = "triton-isa"
package = "triton-isa"

[workspace.dependencies]
air = { path = "triton-air", package = "triton-air" }
anyhow = "1.0"
arbitrary = { version = "1", features = ["derive"] }
assert2 = "0.3"
colored = "2.1"
constraint-builder = { path = "triton-constraint-builder", package = "triton-constraint-builder" }
constraint-circuit = { path = "triton-constraint-circuit", package = "triton-constraint-circuit" }
clap = { version = "4", features = ["derive", "cargo", "wrap_help", "unicode", "string"] }
criterion = { version = "0.5", features = ["html_reports"] }
directories = "5"
fs-err = "2.11.0"
get-size = "0.1.4"
indexmap = "2.2.6"
isa = { path = "triton-isa", package = "triton-isa" }
itertools = "0.13"
lazy_static = "1.5"
ndarray = { version = "0.16", features = ["rayon"] }
Expand Down
1 change: 1 addition & 0 deletions cliff.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ commit_parsers = [
{ body = ".*security", group = "<!-- 70 --> 🔒️ Security" },
{ message = "^revert", group = "<!-- 80 --> ⏪️ Revert" },
{ message = "^style", group = "<!-- 90 --> 🎨 Styling" },
{ message = "^build", group = "<!-- 95 --> 🛠 Build" },
{ footer = "^changelog: ?ignore", skip = true },
]

Expand Down

0 comments on commit d4c48c5

Please sign in to comment.