diff --git a/CHANGELOG.md b/CHANGELOG.md index 0e9b702779..de8cf7b9d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ #### Upcoming Changes +#### [0.9.2] - 2024-01-3 + * Change ec_op_impl() to use ProjectivePoint [#1534](https://github.com/lambdaclass/cairo-vm/pull/1534) #### [0.9.1] - 2023-11-16 diff --git a/Cargo.lock b/Cargo.lock index 483baf1f8c..e213786e36 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -712,7 +712,7 @@ dependencies = [ [[package]] name = "cairo-vm" -version = "0.9.1" +version = "0.9.2" dependencies = [ "anyhow", "arbitrary", @@ -752,7 +752,7 @@ dependencies = [ [[package]] name = "cairo-vm-cli" -version = "0.9.1" +version = "0.9.2" dependencies = [ "assert_matches", "bincode", @@ -766,7 +766,7 @@ dependencies = [ [[package]] name = "cairo1-run" -version = "0.9.1" +version = "0.9.2" dependencies = [ "assert_matches", "bincode", @@ -1395,7 +1395,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hint_accountant" -version = "0.9.1" +version = "0.9.2" dependencies = [ "cairo-vm", "serde", @@ -2866,7 +2866,7 @@ dependencies = [ [[package]] name = "wasm-demo" -version = "0.9.1" +version = "0.9.2" dependencies = [ "cairo-vm", "console_error_panic_hook", diff --git a/Cargo.toml b/Cargo.toml index e0f90b6b77..13006349ba 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ exclude = ["ensure-no_std"] resolver = "2" [workspace.package] -version = "0.9.1" +version = "0.9.2" edition = "2021" license = "Apache-2.0" repository = "https://github.com/lambdaclass/cairo-vm/" @@ -31,7 +31,7 @@ keywords = ["starknet", "cairo", "vm", "wasm", "no_std"] felt = { package = "cairo-felt", path = "./felt", version = "0.9.1", default-features = false, features = [ "alloc", ] } -cairo-vm = { path = "./vm", version = "0.9.1", default-features = false } +cairo-vm = { path = "./vm", version = "0.9.2", 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 1523749cbb..d772df2868 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.9.1" edition.workspace = true license.workspace = true repository.workspace = true