Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: pin Cairo compiler version #1220

Merged
merged 1 commit into from
Jun 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@

#### Upcoming Changes

* fix: pin Cairo compiler version [#1220](https://github.com/lambdaclass/cairo-rs/pull/1220)

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

#### [0.5.1] - 2023-6-7
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ cairo-repo-dir = cairo
build-cairo-1-compiler: | $(cairo-repo-dir)

$(cairo-repo-dir):
git clone https://github.com/starkware-libs/cairo.git
git clone --depth 1 -b v1.1.0 https://github.com/starkware-libs/cairo.git
cd cairo; cargo b --release --bin starknet-compile --bin starknet-sierra-compile

cargo-deps:
Expand Down