Skip to content

Commit

Permalink
upgraded cairo compiler version used to 2.8.2 (#333)
Browse files Browse the repository at this point in the history
<!--- Please provide a general summary of your changes in the title
above -->

## Pull Request type

<!-- Please try to limit your pull request to one type; submit multiple
pull requests if needed. -->

Please check the type of change your PR introduces:

- [ ] Bugfix
- [X] Feature
- [ ] Code style update (formatting, renaming)
- [ ] Refactoring (no functional changes, no API changes)
- [ ] Build-related changes
- [ ] Documentation content changes
- [ ] Other (please describe):

## What is the current behavior?

<!-- Please describe the current behavior that you are modifying, or
link to a relevant issue. -->
No behavior modified. Projects that use Alexandria as a dependency can't
used it if they need a cairo version above 2.7.0 as it has been
hardcoded in the TOML.
Issue Number: N/A

## What is the new behavior?

<!-- Please describe the behavior or changes that are being added by
this PR. -->

-Swithced cairo compiler version used from 2.7.0 to 2.8.2
-No changes in behaviour exept more warnings appearing due to unused
imports

## Does this introduce a breaking change?

- [ ] Yes
- [X] No

<!-- If this does introduce a breaking change, please describe the
impact and migration path for existing applications below. -->

## Other information

<!-- Any other information that is important to this PR, such as
screenshots of how the component looks before and after the change. -->
  • Loading branch information
petarcalic99 authored Oct 9, 2024
1 parent 8208871 commit 475eaf0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1 +1 @@
scarb 2.7.0
scarb 2.8.2
6 changes: 3 additions & 3 deletions Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ name = "alexandria"
version = "0.1.0"
description = "Community maintained Cairo and Starknet libraries"
homepage = "https://github.com/keep-starknet-strange/alexandria/"
cairo-version = "2.7.0"
cairo-version = "2.8.2"

[workspace.dependencies]
starknet = "2.7.0"
cairo_test = "2.7.0"
starknet = "2.8.2"
cairo_test = "2.8.2"

[workspace.tool.fmt]
sort-module-level-items = true
Expand Down

0 comments on commit 475eaf0

Please sign in to comment.