From 49c30223eb69efd481ac1e479f45e729e5c31bae Mon Sep 17 00:00:00 2001 From: gaetbout Date: Wed, 25 Oct 2023 19:08:52 +0200 Subject: [PATCH] upgd to 2.3 (#200) Upgrading to latest 2.3 Also updated CI to make sure it builds before running tests and formatting Could you please make a release? --- .github/workflows/test.yml | 2 ++ .tool-versions | 2 +- Scarb.lock | 65 ++++++++++++++++++++++++++++++++++++++ Scarb.toml | 2 +- 4 files changed, 69 insertions(+), 2 deletions(-) create mode 100644 Scarb.lock diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 2ad46b89..a25b017a 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -15,6 +15,7 @@ jobs: run: scarb build test: + needs: build name: test runs-on: ubuntu-latest steps: @@ -26,6 +27,7 @@ jobs: run: scarb test check-format: + needs: build name: check-format runs-on: ubuntu-latest steps: diff --git a/.tool-versions b/.tool-versions index 54917fa6..e56a5760 100644 --- a/.tool-versions +++ b/.tool-versions @@ -1 +1 @@ -scarb 2.3.0-rc0 +scarb 2.3.0 diff --git a/Scarb.lock b/Scarb.lock new file mode 100644 index 00000000..f6adb87a --- /dev/null +++ b/Scarb.lock @@ -0,0 +1,65 @@ +# Code generated by scarb DO NOT EDIT. +version = 1 + +[[package]] +name = "alexandria_ascii" +version = "0.1.0" +dependencies = [ + "alexandria_data_structures", +] + +[[package]] +name = "alexandria_bytes" +version = "0.1.0" +dependencies = [ + "alexandria_data_structures", + "alexandria_math", +] + +[[package]] +name = "alexandria_data_structures" +version = "0.1.0" +dependencies = [ + "alexandria_encoding", +] + +[[package]] +name = "alexandria_encoding" +version = "0.1.0" +dependencies = [ + "alexandria_math", +] + +[[package]] +name = "alexandria_linalg" +version = "0.1.0" + +[[package]] +name = "alexandria_math" +version = "0.2.0" +dependencies = [ + "alexandria_data_structures", +] + +[[package]] +name = "alexandria_merkle_tree" +version = "0.1.0" + +[[package]] +name = "alexandria_numeric" +version = "0.1.0" + +[[package]] +name = "alexandria_searching" +version = "0.1.0" +dependencies = [ + "alexandria_data_structures", +] + +[[package]] +name = "alexandria_sorting" +version = "0.1.0" + +[[package]] +name = "alexandria_storage" +version = "0.2.0" diff --git a/Scarb.toml b/Scarb.toml index 732099f5..5430596b 100644 --- a/Scarb.toml +++ b/Scarb.toml @@ -18,7 +18,7 @@ description = "Community maintained Cairo and Starknet libraries" homepage = "https://github.com/keep-starknet-strange/alexandria/" [workspace.dependencies] -starknet = ">=2.3.0-rc0" +starknet = "=2.3.0" [scripts] all = "scarb build && scarb test"