Skip to content

Commit 7e263fe

Browse files
Bump version to 0.9.0-rc.6
1 parent e82550c commit 7e263fe

7 files changed

Lines changed: 23 additions & 14 deletions

File tree

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,9 @@ jobs:
3737
keys-asc: https://apt.llvm.org/llvm-snapshot.gpg.key
3838
- name: Install LLVM
3939
run: sudo apt-get install llvm-19 llvm-19-dev llvm-19-runtime clang-19 clang-tools-19 lld-19 libpolly-19-dev libmlir-19-dev mlir-19-tools
40-
- name: publish sierra emu
41-
run: cargo publish --token ${CRATES_TOKEN} --all-features -p sierra-emu
40+
# sierra-emu 0.9.0-rc.6 already published; re-enable for the next release.
41+
# - name: publish sierra emu
42+
# run: cargo publish --token ${CRATES_TOKEN} --all-features -p sierra-emu
4243
- name: publish cairo native
4344
run: cargo publish --token ${CRATES_TOKEN} --all-features -p cairo-native
4445
- name: publish starknet-native-compile

Cargo.lock

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

Cargo.toml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ members = [
1919
]
2020

2121
[workspace.package]
22-
version = "0.9.0-rc.2"
22+
version = "0.9.0-rc.6"
2323
edition = "2021"
2424
license = "Apache-2.0"
2525
repository = "https://github.com/starkware-libs/cairo_native"
@@ -52,7 +52,7 @@ cairo-lang-test-plugin = "~2.17.0-rc.4"
5252
cairo-lang-test-runner = "~2.17.0-rc.4"
5353
cairo-lang-utils = "~2.17.0-rc.4"
5454
cairo-native-bin-utils.path = "binaries/cairo-native-bin-utils"
55-
cairo-native = { path = ".", version = "0.9.0-rc.2" }
55+
cairo-native = { path = ".", version = "0.9.0-rc.6" }
5656
clap = "4.5.23"
5757
colored = "2.1.0"
5858
criterion = "0.5.1"
@@ -81,7 +81,7 @@ sec1 = "0.7.3"
8181
serde = "1.0.0"
8282
serde_json = "1.0.128"
8383
sha2 = "0.10.8"
84-
sierra-emu = { path = "debug_utils/sierra-emu", version = "0.9.0-rc.2" }
84+
sierra-emu = { path = "debug_utils/sierra-emu", version = "0.9.0-rc.6" }
8585
smallvec = "1.13.2"
8686
starknet-crypto = "0.8.1"
8787
starknet-curve = "0.6.0"
@@ -106,7 +106,14 @@ description = "A compiler to convert Cairo's IR Sierra code to MLIR and execute
106106
readme = "README.md"
107107
keywords = ["starknet", "cairo", "compiler", "mlir"]
108108
categories = ["compilers"]
109-
exclude = ["vendor/"]
109+
exclude = [
110+
"vendor/",
111+
"corelib",
112+
"test_data/tests/corelib",
113+
"test_data/programs/corelib",
114+
"test_data/tests_starknet/bug_samples",
115+
"test_data/tests_starknet/cairo_level_tests",
116+
]
110117
version.workspace = true
111118
edition.workspace = true
112119
license.workspace = true

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ often so use it at your own risk. 🚧
4949

5050
For versions under `1.0` `cargo` doesn't comply with
5151
[semver](https://semver.org/), so we advise to pin the version you
52-
use. This can be done by adding `cairo-native = "0.9.0-rc.2"` to your Cargo.toml
52+
use. This can be done by adding `cairo-native = "0.9.0-rc.6"` to your Cargo.toml
5353

5454
## Getting Started
5555

debug_utils/casm-data-flow/Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

debug_utils/casm-data-flow/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[package]
44
name = "casm-data-flow"
5-
version = "0.9.0-rc.2"
5+
version = "0.9.0-rc.6"
66
edition = "2021"
77
license = "Apache-2.0"
88
repository = "https://github.com/starkware-libs/cairo_native"

debug_utils/sierra-emu/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@ name = "sierra-emu"
33
description = "A Cairo (Sierra) Virtual Machine."
44
readme = "README.md"
55
keywords = ["starknet", "cairo", "vm", "sierra"]
6+
exclude = ["corelib"]
67
version.workspace = true
78
edition.workspace = true
89
license.workspace = true

0 commit comments

Comments
 (0)