Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

release: v0.8.4-rc.0 #1535

Merged
merged 1 commit into from
Jan 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
10 changes: 5 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
2 changes: 1 addition & 1 deletion felt/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "cairo-felt"
description = "Field elements representation for the Cairo VM"
version.workspace = true
version = "0.8.2"
edition.workspace = true
license.workspace = true
repository.workspace = true
Expand Down
Loading