Skip to content

Commit f8927d9

Browse files
authored
v0.5.2 update (#1226)
1 parent 695feee commit f8927d9

File tree

7 files changed

+66
-64
lines changed

7 files changed

+66
-64
lines changed

CHANGELOG.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
#### Upcoming Changes
44

5+
#### [0.5.2] - 2023-6-12
6+
57
* BREAKING: Compute `ExecutionResources.n_steps` without requiring trace [#1222](https://github.com/lambdaclass/cairo-rs/pull/1222)
68

79
* `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`
@@ -14,10 +16,10 @@
1416

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

17-
#### [0.5.1] - 2023-6-7
18-
1919
* fix: substraction of `MaybeRelocatable` always behaves as signed [#1218](https://github.com/lambdaclass/cairo-rs/pull/1218)
2020

21+
#### [0.5.1] - 2023-6-7
22+
2123
* fix: fix overflow for `QUAD_BIT` and `DI_BIT` hints [#1209](https://github.com/lambdaclass/cairo-rs/pull/1209)
2224
Fixes [#1205](https://github.com/lambdaclass/cairo-rs/issue/1205)
2325

Cargo.lock

Lines changed: 53 additions & 53 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ members = [".", "cairo-vm-cli", "felt", "hint_accountant", "./deps/parse-hyperli
33

44
[package]
55
name = "cairo-vm"
6-
version = "0.5.1"
6+
version = "0.5.2"
77
edition = "2021"
88
license = "Apache-2.0"
99
description = "Blazing fast Cairo interpreter"
@@ -74,10 +74,10 @@ thiserror-no-std = "2.0.2"
7474
# https://stackoverflow.com/questions/70630556/parse-allowing-nested-parentheses-in-nom
7575
# There is a proposal for extending nom::delimited to use this function:
7676
# https://github.com/Geal/nom/issues/1253
77-
parse-hyperlinks = { package = "cairo-take_until_unbalanced", path = "./deps/parse-hyperlinks", version = "0.27.0", default-features = false, features = [
77+
parse-hyperlinks = { package = "cairo-take_until_unbalanced", path = "./deps/parse-hyperlinks", version = "0.28.0", default-features = false, features = [
7878
"alloc",
7979
] }
80-
felt = { package = "cairo-felt", path = "./felt", version = "0.5.1", default-features = false, features = [
80+
felt = { package = "cairo-felt", path = "./felt", version = "0.5.2", default-features = false, features = [
8181
"alloc",
8282
] }
8383
bitvec = { version = "1", default-features = false, features = ["alloc"] }

cairo-vm-cli/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "cairo-vm-cli"
3-
version = "0.5.1"
3+
version = "0.5.2"
44
edition = "2021"
55

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

0 commit comments

Comments
 (0)