From e3a244e0ff57a9b791d67ef4890c711b4f5d184f Mon Sep 17 00:00:00 2001 From: fmoletta <99273364+fmoletta@users.noreply.github.com> Date: Fri, 7 Jun 2024 15:15:28 -0300 Subject: [PATCH] Release 0.9.3 (#1787) --- CHANGELOG.md | 4 +++- Cargo.lock | 10 +++++----- Cargo.toml | 4 ++-- 3 files changed, 10 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 35b7c23019..443558f9e1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,9 +2,11 @@ #### Upcoming Changes +#### [0.9.3] - 2024-06-07 + * feat: Add `EXCESS_BALANCE` hint [#1777](https://github.com/lambdaclass/cairo-vm/pull/1777) -#### [0.9.2] - 2024-01-3 +#### [0.9.2] - 2024-01-03 * Change ec_op_impl() to use ProjectivePoint [#1534](https://github.com/lambdaclass/cairo-vm/pull/1534) diff --git a/Cargo.lock b/Cargo.lock index 66d942feb5..a7a759e1cf 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -712,7 +712,7 @@ dependencies = [ [[package]] name = "cairo-vm" -version = "0.9.2" +version = "0.9.3" dependencies = [ "anyhow", "arbitrary", @@ -753,7 +753,7 @@ dependencies = [ [[package]] name = "cairo-vm-cli" -version = "0.9.2" +version = "0.9.3" dependencies = [ "assert_matches", "bincode", @@ -767,7 +767,7 @@ dependencies = [ [[package]] name = "cairo1-run" -version = "0.9.2" +version = "0.9.3" dependencies = [ "assert_matches", "bincode", @@ -1396,7 +1396,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hint_accountant" -version = "0.9.2" +version = "0.9.3" dependencies = [ "cairo-vm", "serde", @@ -2877,7 +2877,7 @@ dependencies = [ [[package]] name = "wasm-demo" -version = "0.9.2" +version = "0.9.3" dependencies = [ "cairo-vm", "console_error_panic_hook", diff --git a/Cargo.toml b/Cargo.toml index 13006349ba..b46057306c 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -20,7 +20,7 @@ exclude = ["ensure-no_std"] resolver = "2" [workspace.package] -version = "0.9.2" +version = "0.9.3" 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.2", default-features = false } +cairo-vm = { path = "./vm", version = "0.9.3", default-features = false } mimalloc = { version = "0.1.37", default-features = false } num-bigint = { version = "0.4", default-features = false, features = [ "serde",