Skip to content

Commit f1ad334

Browse files
authored
release 0.8.0 (#1284)
1 parent d0804dd commit f1ad334

File tree

8 files changed

+17
-15
lines changed

8 files changed

+17
-15
lines changed

CHANGELOG.md

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

33
#### Upcoming Changes
44

5+
#### [0.8.0] - 2023-6-26
6+
57
* feat: Add feature `lambdaworks-felt` to `felt` & `cairo-vm` crates [#1218](https://github.com/lambdaclass/cairo-rs/pull/1281)
68

79
Changes under this feature:

Cargo.lock

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

Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,10 @@ thiserror-no-std = { version = "2.0.2", default-features = false }
5252
# https://stackoverflow.com/questions/70630556/parse-allowing-nested-parentheses-in-nom
5353
# There is a proposal for extending nom::delimited to use this function:
5454
# https://github.com/Geal/nom/issues/1253
55-
parse-hyperlinks = { package = "cairo-take_until_unbalanced", path = "./deps/parse-hyperlinks", version = "0.31.0", default-features = false, features = [
55+
parse-hyperlinks = { package = "cairo-take_until_unbalanced", path = "./deps/parse-hyperlinks", version = "0.32.0", default-features = false, features = [
5656
"alloc",
5757
] }
58-
felt = { package = "cairo-felt", path = "./felt", version = "0.7.0", default-features = false, features = [
58+
felt = { package = "cairo-felt", path = "./felt", version = "0.8.0", default-features = false, features = [
5959
"alloc",
6060
] }
6161
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.7.0"
3+
version = "0.8.0"
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 = "../vm", version = "0.7.0" }
8+
cairo-vm = { path = "../vm", version = "0.8.0" }
99
clap = { version = "3.2.5", features = ["derive"] }
1010
mimalloc = { version = "0.1.29", default-features = false, optional = true }
1111
nom = "7"

deps/parse-hyperlinks/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cairo-take_until_unbalanced"
3-
version = "0.31.0"
3+
version = "0.32.0"
44
authors = [
55
"Jens Getreu <getreu@[email protected]>",
66
"LambdaClass <[email protected]>",

felt/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cairo-felt"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Field elements representation for the Cairo VM"

hint_accountant/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
[package]
22
name = "hint_accountant"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "A script to check which whitelisted hints we're missing"
77

88
[dependencies]
9-
cairo-vm = { path = "../vm", version = "0.7.0" }
9+
cairo-vm = { path = "../vm", version = "0.8.0" }
1010
serde = { version = "1.0", features = ["derive"] }
1111
serde_json = "1.0"

vm/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "cairo-vm"
3-
version = "0.7.0"
3+
version = "0.8.0"
44
edition = "2021"
55
license = "Apache-2.0"
66
description = "Blazing fast Cairo interpreter"

0 commit comments

Comments
 (0)