From 475eaf015f4e997cff8ec31a5e7b4ab3f9a86e32 Mon Sep 17 00:00:00 2001 From: P3tar <47250382+petarcalic99@users.noreply.github.com> Date: Thu, 10 Oct 2024 00:34:10 +0900 Subject: [PATCH] upgraded cairo compiler version used to 2.8.2 (#333) ## Pull Request type 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? 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? -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 ## Other information --- .tool-versions | 2 +- Scarb.toml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.tool-versions b/.tool-versions index 045dc3e7..cc60fd62 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -scarb 2.7.0 +scarb 2.8.2 diff --git a/Scarb.toml b/Scarb.toml index 878dcf71..3f9da5e1 100644 --- a/Scarb.toml +++ b/Scarb.toml @@ -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