From 9d31ed489734bce878424fb225cdce127f402489 Mon Sep 17 00:00:00 2001 From: Mario Rugiero Date: Wed, 3 Jan 2024 12:27:21 -0300 Subject: [PATCH] release: v0.8.4-rc.0 Fixed `cairo-felt` as version 0.8.2 to deal with conflicts. --- CHANGELOG.md | 2 ++ Cargo.lock | 10 +++++----- Cargo.toml | 4 ++-- felt/Cargo.toml | 2 +- 4 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d124ecf71d..89f3d9bca4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/Cargo.lock b/Cargo.lock index 1da7ce50e8..b33366fadb 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -298,7 +298,7 @@ dependencies = [ [[package]] name = "cairo-felt" -version = "0.8.3" +version = "0.8.2" dependencies = [ "lambdaworks-math", "lazy_static", @@ -711,7 +711,7 @@ dependencies = [ [[package]] name = "cairo-vm" -version = "0.8.3" +version = "0.8.4-rc.0" dependencies = [ "anyhow", "ark-ff", @@ -719,7 +719,7 @@ dependencies = [ "assert_matches", "bincode", "bitvec", - "cairo-felt 0.8.3", + "cairo-felt 0.8.2", "cairo-lang-casm", "cairo-lang-starknet", "criterion", @@ -750,7 +750,7 @@ dependencies = [ [[package]] name = "cairo-vm-cli" -version = "0.8.3" +version = "0.8.4-rc.0" dependencies = [ "assert_matches", "bincode", @@ -1362,7 +1362,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hint_accountant" -version = "0.8.3" +version = "0.8.4-rc.0" dependencies = [ "cairo-vm", "serde", diff --git a/Cargo.toml b/Cargo.toml index 0f96e9ce28..aecd56fe04 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -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/" @@ -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", diff --git a/felt/Cargo.toml b/felt/Cargo.toml index 36ea5e42db..74e05d2e1c 100644 --- a/felt/Cargo.toml +++ b/felt/Cargo.toml @@ -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