From b020f11316bac0afc38313e2fc27063db1429f7c Mon Sep 17 00:00:00 2001 From: fmoletta <99273364+fmoletta@users.noreply.github.com> Date: Mon, 8 Jan 2024 16:27:49 +0200 Subject: [PATCH] Update version (#1543) --- CHANGELOG.md | 2 ++ Cargo.lock | 10 +++++----- Cargo.toml | 4 ++-- 3 files changed, 9 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 485aeb8cb6..c1f9aa3816 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ #### Upcoming Changes +#### [1.0.0-rc0] - 2024-1-5 + * feat: Use `ProjectivePoint` from types-rs in ec_op builtin impl [#1532](https://github.com/lambdaclass/cairo-vm/pull/1532) * feat(BREAKING): Replace `cairo-felt` crate with `starknet-types-core` (0.0.5) [#1408](https://github.com/lambdaclass/cairo-vm/pull/1408) diff --git a/Cargo.lock b/Cargo.lock index 2b05a8af1b..e98ee2cd91 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -682,7 +682,7 @@ dependencies = [ [[package]] name = "cairo-vm" -version = "0.9.1" +version = "1.0.0-rc0" dependencies = [ "anyhow", "arbitrary", @@ -721,7 +721,7 @@ dependencies = [ [[package]] name = "cairo-vm-cli" -version = "0.9.1" +version = "1.0.0-rc0" dependencies = [ "assert_matches", "bincode", @@ -735,7 +735,7 @@ dependencies = [ [[package]] name = "cairo1-run" -version = "0.9.1" +version = "1.0.0-rc0" dependencies = [ "assert_matches", "bincode", @@ -1336,7 +1336,7 @@ checksum = "7f24254aa9a54b5c858eaee2f5bccdb46aaf0e486a595ed5fd8f86ba55232a70" [[package]] name = "hint_accountant" -version = "0.9.1" +version = "1.0.0-rc0" dependencies = [ "cairo-vm", "serde", @@ -2806,7 +2806,7 @@ dependencies = [ [[package]] name = "wasm-demo" -version = "0.9.1" +version = "1.0.0-rc0" dependencies = [ "cairo-vm", "console_error_panic_hook", diff --git a/Cargo.toml b/Cargo.toml index 9c23bfd625..c7e3269d38 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -18,7 +18,7 @@ exclude = ["ensure-no_std"] resolver = "2" [workspace.package] -version = "0.9.1" +version = "1.0.0-rc0" edition = "2021" license = "Apache-2.0" repository = "https://github.com/lambdaclass/cairo-vm/" @@ -26,7 +26,7 @@ readme = "README.md" keywords = ["starknet", "cairo", "vm", "wasm", "no_std"] [workspace.dependencies] -cairo-vm = { path = "./vm", version = "0.9.1", default-features = false } +cairo-vm = { path = "./vm", version = "1.0.0-rc0", default-features = false } mimalloc = { version = "0.1.37", default-features = false } num-bigint = { version = "0.4", default-features = false, features = [ "serde",