Skip to content

Commit

Permalink
release: v0.8.4-rc.0
Browse files Browse the repository at this point in the history
Worked around dependency issues in `cairo-vm` by copying the
`cairo-felt` dependency entry into its manifest rather than using the
workspace one, because it looked on the path first and lead to
mismatches.
  • Loading branch information
Oppen committed Jan 3, 2024
1 parent 008507a commit cc6b8ab
Show file tree
Hide file tree
Showing 4 changed files with 26 additions and 8 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## Cairo-VM Changelog

### [0.8.4-rc.0]

Change ec_op_impl() to use ProjectivePoint [#1531](https://github.com/lambdaclass/cairo-vm/pull/1531)

### [0.8.3] - 2023-12-10
Expand Down
24 changes: 19 additions & 5 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ exclude = ["ensure-no_std"]
resolver = "2"

[workspace.package]
version = "0.8.3"
version = "0.8.4-rc.0"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/lambdaclass/cairo-vm/"
Expand All @@ -17,7 +17,7 @@ readme = "README.md"
felt = { package = "cairo-felt", path = "./felt", version = "0.8.2", default-features = false, features = [
"alloc",
] }
cairo-vm = { path = "./vm", version = "0.8.3", default-features = false }
cairo-vm = { path = "./vm", version = "0.8.4-rc.0", default-features = false }
mimalloc = { version = "0.1.37", default-features = false }
num-bigint = { version = "0.4", default-features = false, features = [
"serde",
Expand Down
4 changes: 3 additions & 1 deletion vm/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,9 @@ thiserror-no-std = { workspace = true }

# only for std
num-prime = { version = "0.4.3", features = ["big-int"], optional = true }
felt = { workspace = true }
felt = { package = "cairo-felt", version = "0.8.2", default-features = false, features = [
"alloc",
] }
bitvec = { workspace = true }

# Dependencies for cairo-1-hints feature
Expand Down

0 comments on commit cc6b8ab

Please sign in to comment.