Skip to content

Commit

Permalink
Release 0.8.5 (#1354)
Browse files Browse the repository at this point in the history
* release 0.8.5

* update Cargo.lock
  • Loading branch information
pefontana authored Jul 31, 2023
1 parent e959f56 commit 1642e70
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 42 deletions.
7 changes: 5 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

#### Upcoming Changes

* fix: `Program` comparison depending on `hints_ranges` ordering [#1351](https://github.com/lambdaclass/cairo-rs/pull/1351)
#### [0.8.5] - 2023-7-31

#### [0.8.4] - 2023-7-28
* fix: `Program` comparison depending on `hints_ranges` ordering [#1351](https://github.com/lambdaclass/cairo-rs/pull/1351)

* feat: implement the `--air_public_input` flag to the runner for outputting public inputs into a file [#1268](https://github.com/lambdaclass/cairo-rs/pull/1268)

Expand Down Expand Up @@ -40,6 +40,9 @@
`get_hint_data(self, &[HintReference], &mut dyn HintProcessor) -> Result<Vec<Box<dyn Any>, VirtualMachineError>`
* Hook methods receive `&[Box<dyn Any>]` rather than `&HashMap<usize, Vec<Box<dyn Any>>>`

#### [0.8.4]
**YANKED**

#### [0.8.3]
**YANKED**

Expand Down
74 changes: 37 additions & 37 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 @@ -13,18 +13,18 @@ exclude = ["ensure-no_std"]
resolver = "2"

[workspace.package]
version = "0.8.4"
version = "0.8.5"
edition = "2021"
license = "Apache-2.0"
repository = "https://github.com/lambdaclass/cairo-vm/"
readme = "README.md"
keywords = ["starknet", "cairo", "vm", "wasm", "no_std"]

[workspace.dependencies]
felt = { package = "cairo-felt", path = "./felt", version = "0.8.4", default-features = false, features = [
felt = { package = "cairo-felt", path = "./felt", version = "0.8.5", default-features = false, features = [
"alloc",
] }
cairo-vm = { path = "./vm", version = "0.8.4", default-features = false }
cairo-vm = { path = "./vm", version = "0.8.5", default-features = false }
mimalloc = { version = "0.1.37", default-features = false }
num-bigint = { version = "0.4", default-features = false, features = [
"serde",
Expand Down

1 comment on commit 1642e70

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.30.

Benchmark suite Current: 1642e70 Previous: e959f56 Ratio
build runner 1735 ns/iter (± 102) 1334 ns/iter (± 0) 1.30
initialize 68143 ns/iter (± 3519) 50868 ns/iter (± 260) 1.34
parse program 24621362 ns/iter (± 1670002) 18642387 ns/iter (± 204760) 1.32

This comment was automatically generated by workflow using github-action-benchmark.

CC: @unbalancedparentheses

Please sign in to comment.