Skip to content

Commit

Permalink
v0.5.2 update (#1226)
Browse files Browse the repository at this point in the history
  • Loading branch information
pefontana authored Jun 12, 2023
1 parent 695feee commit f8927d9
Show file tree
Hide file tree
Showing 7 changed files with 66 additions and 64 deletions.
6 changes: 4 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#### Upcoming Changes

#### [0.5.2] - 2023-6-12

* BREAKING: Compute `ExecutionResources.n_steps` without requiring trace [#1222](https://github.com/lambdaclass/cairo-rs/pull/1222)

* `CairoRunner::get_execution_resources` return's `n_steps` field value is now set to `vm.current_step` instead of `0` if both `original_steps` and `trace` are set to `None`
Expand All @@ -14,10 +16,10 @@

* perf: make `inner_rc_bound` a constant, improving performance of the range-check builtin

#### [0.5.1] - 2023-6-7

* fix: substraction of `MaybeRelocatable` always behaves as signed [#1218](https://github.com/lambdaclass/cairo-rs/pull/1218)

#### [0.5.1] - 2023-6-7

* fix: fix overflow for `QUAD_BIT` and `DI_BIT` hints [#1209](https://github.com/lambdaclass/cairo-rs/pull/1209)
Fixes [#1205](https://github.com/lambdaclass/cairo-rs/issue/1205)

Expand Down
106 changes: 53 additions & 53 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ members = [".", "cairo-vm-cli", "felt", "hint_accountant", "./deps/parse-hyperli

[package]
name = "cairo-vm"
version = "0.5.1"
version = "0.5.2"
edition = "2021"
license = "Apache-2.0"
description = "Blazing fast Cairo interpreter"
Expand Down Expand Up @@ -74,10 +74,10 @@ thiserror-no-std = "2.0.2"
# https://stackoverflow.com/questions/70630556/parse-allowing-nested-parentheses-in-nom
# There is a proposal for extending nom::delimited to use this function:
# https://github.com/Geal/nom/issues/1253
parse-hyperlinks = { package = "cairo-take_until_unbalanced", path = "./deps/parse-hyperlinks", version = "0.27.0", default-features = false, features = [
parse-hyperlinks = { package = "cairo-take_until_unbalanced", path = "./deps/parse-hyperlinks", version = "0.28.0", default-features = false, features = [
"alloc",
] }
felt = { package = "cairo-felt", path = "./felt", version = "0.5.1", default-features = false, features = [
felt = { package = "cairo-felt", path = "./felt", version = "0.5.2", default-features = false, features = [
"alloc",
] }
bitvec = { version = "1", default-features = false, features = ["alloc"] }
Expand Down
4 changes: 2 additions & 2 deletions cairo-vm-cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
[package]
name = "cairo-vm-cli"
version = "0.5.1"
version = "0.5.2"
edition = "2021"

[dependencies]
bincode = { version = "2.0.0-rc.2", tag = "v2.0.0-rc.2", git = "https://github.com/bincode-org/bincode.git" }
cairo-vm = { path = "..", version = "0.5.1" }
cairo-vm = { path = "..", version = "0.5.2" }
clap = { version = "3.2.5", features = ["derive"] }
mimalloc = { version = "0.1.29", default-features = false, optional = true }
nom = "7"
Expand Down
Loading

0 comments on commit f8927d9

Please sign in to comment.