Skip to content

Commit

Permalink
fix: ensure every project is using cairo 2.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
glihm committed Aug 2, 2024
1 parent 5f124cc commit acf1b7f
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 10 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-rc.3
scarb 2.7.0
6 changes: 3 additions & 3 deletions crates/dojo-core/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
[package]
cairo-version = "2.7.0-rc.3"
cairo-version = "2.7.0"
edition = "2024_07"
description = "The Dojo Core library for autonomous worlds."
name = "dojo"
version = "0.7.3"
version = "1.0.0-alpha.4"

[dependencies]
# Rev points to support for Cairo 2.7.0-rc.3 without any tag yet. Should be
# updated once a release is cut with `2.7.0-rc.3` support in it.
dojo_plugin = { git = "https://github.com/dojoengine/dojo", rev = "71b1f1a4" }
starknet = "=2.7.0-rc.3"
starknet = "=2.7.0"

[lib]

Expand Down
2 changes: 1 addition & 1 deletion crates/dojo-lang/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[package]
name = "dojo_plugin"
version = "0.7.3"
version = "1.0.0-alpha.4"

[cairo-plugin]
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "compiler_cairo"
version = "0.1.0"
edition = "2024_07"
cairo-version = "2.7.0-rc.3"
cairo-version = "2.7.0"

# See more keys and their definitions at https://docs.swmansion.com/scarb/docs/reference/manifest.html

Expand Down
4 changes: 2 additions & 2 deletions crates/torii/types-test/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
[package]
cairo-version = "=2.7.0-rc.3"
cairo-version = "=2.7.0"
edition = "2024_07"
name = "types_test"
version = "0.7.3"
version = "1.0.0-alpha.4"

[cairo]
sierra-replace-ids = true
Expand Down
4 changes: 2 additions & 2 deletions examples/spawn-and-move/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
cairo-version = "=2.7.0-rc.3"
cairo-version = "=2.7.0"
name = "dojo_examples"
version = "0.7.3"
version = "1.0.0-alpha.4"
# Use the prelude with the less imports as possible
# from corelib.
edition = "2024_07"
Expand Down

0 comments on commit acf1b7f

Please sign in to comment.