Skip to content

Commit

Permalink
release: v0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Oppen committed Oct 3, 2023
1 parent f6c7cb0 commit 4696adf
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 18 deletions.
4 changes: 3 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#### Upcoming Changes

#### [0.9.0] - 2023-10-03

* fix: Default to empty attributes vector when the field is missing from the program JSON [#1450](https://github.com/lambdaclass/cairo-vm/pull/1450)

* fix: Change serialization of CairoPieMemory to match Python's binary format [#1447](https://github.com/lambdaclass/cairo-vm/pull/1447)
Expand All @@ -16,7 +18,7 @@

* feat: Added a differential fuzzer for programs with whitelisted hints [#1358](https://github.com/lambdaclass/cairo-vm/pull/1358)

* fix: Change return type of `get_execution_resources` to `RunnerError` [#1398](https://github.com/lambdaclass/cairo-vm/pull/1398)
* fix(breaking): Change return type of `get_execution_resources` to `RunnerError` [#1398](https://github.com/lambdaclass/cairo-vm/pull/1398)

* Don't build wasm-demo in `build` target + add ci job to run the wasm demo [#1393](https://github.com/lambdaclass/cairo-vm/pull/1393)

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

[workspace.package]
version = "0.8.7"
version = "0.9.0"
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.7", default-features = false, features = [
felt = { package = "cairo-felt", path = "./felt", version = "0.9.0", default-features = false, features = [
"alloc",
] }
cairo-vm = { path = "./vm", version = "0.8.7", default-features = false }
cairo-vm = { path = "./vm", version = "0.9.0", default-features = false }
mimalloc = { version = "0.1.37", default-features = false }
num-bigint = { version = "0.4", default-features = false, features = [
"serde",
Expand Down

0 comments on commit 4696adf

Please sign in to comment.