From 198fb9ca65534ae421daa1c49cff3c4d70db7395 Mon Sep 17 00:00:00 2001 From: thiscaspar Date: Mon, 2 Dec 2024 07:13:07 +0800 Subject: [PATCH] bump to dojo 1.0.3 --- .github/workflows/ci-contracts.yml | 4 ++-- DOJO_VERSION | 2 +- Dockerfile | 2 +- contracts/.tool-versions | 2 +- contracts/.vscode/settings.json | 2 +- contracts/.vscode/tasks.json | 2 +- contracts/README.md | 2 +- contracts/Scarb.lock | 12 ++++++------ contracts/Scarb.toml | 4 ++-- contracts/Scarb_deploy.toml | 4 ++-- contracts/dojo_dev.toml | 2 +- test_helpers/Scarb.toml | 4 ++-- 12 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/ci-contracts.yml b/.github/workflows/ci-contracts.yml index 4888b99..1b0744d 100644 --- a/.github/workflows/ci-contracts.yml +++ b/.github/workflows/ci-contracts.yml @@ -39,6 +39,6 @@ jobs: - uses: asdf-vm/actions/setup@v3 - run: | asdf plugin add dojo https://github.com/dojoengine/asdf-dojo - asdf install dojo 1.0.2 - asdf global dojo 1.0.2 + asdf install dojo 1.0.3 + asdf global dojo 1.0.3 cd contracts && sozo test diff --git a/DOJO_VERSION b/DOJO_VERSION index 6d7de6e..21e8796 100644 --- a/DOJO_VERSION +++ b/DOJO_VERSION @@ -1 +1 @@ -1.0.2 +1.0.3 diff --git a/Dockerfile b/Dockerfile index 8ed1379..e9bb61c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ SHELL ["/bin/bash", "-c"] ARG ASDF_VERSION="v0.14.1" ARG SCARB_VERSION="2.7.0" -ARG DOJO_VERSION="1.0.2" +ARG DOJO_VERSION="1.0.3" ARG STARKLI_VERSION="0.3.5" diff --git a/contracts/.tool-versions b/contracts/.tool-versions index e5c2ee0..bc20a8c 100644 --- a/contracts/.tool-versions +++ b/contracts/.tool-versions @@ -1,2 +1,2 @@ -dojo 1.0.2 +dojo 1.0.3 scarb 2.8.4 diff --git a/contracts/.vscode/settings.json b/contracts/.vscode/settings.json index 838bd66..742c25a 100644 --- a/contracts/.vscode/settings.json +++ b/contracts/.vscode/settings.json @@ -1,6 +1,6 @@ { "cairo1.enableLanguageServer": true, - "cairo1.languageServerPath": "${userHome}/.asdf/installs/dojo/1.0.2/bin/dojo-language-server", + "cairo1.languageServerPath": "${userHome}/.asdf/installs/dojo/1.0.3/bin/dojo-language-server", "cairo1.enableScarb": true, "cairo1.scarbPath": "${userHome}/.asdf/installs/scarb/2.8.4/bin/scarb", "cairo1.preferScarbLanguageServer": false diff --git a/contracts/.vscode/tasks.json b/contracts/.vscode/tasks.json index 481f2a5..1558e19 100644 --- a/contracts/.vscode/tasks.json +++ b/contracts/.vscode/tasks.json @@ -16,7 +16,7 @@ { "label": "Start Torii", "type": "shell", - "command": "torii --world 0x06f130c8e150882e39cbe878c650c8f35c86579180dbc77d0c1cbe169449b5f6 --http.cors_origins '*' --db-dir db/torii", + "command": "torii --world 0x2bf4d3aa0dced89d37d8c3b4ff6a05895c0af32ff3baf9b02abf8504e53eaad --http.cors_origins '*' --db-dir db/torii", "isBackground": true, "problemMatcher": [], "presentation": { diff --git a/contracts/README.md b/contracts/README.md index c91343b..f37d7ec 100644 --- a/contracts/README.md +++ b/contracts/README.md @@ -16,7 +16,7 @@ Follow the asdf installation instructions. ``` asdf plugin add dojo https://github.com/dojoengine/asdf-dojo -asdf install dojo 1.0.2 +asdf install dojo 1.0.3 ``` ### Install scarb diff --git a/contracts/Scarb.lock b/contracts/Scarb.lock index 9be828b..6cbf62e 100644 --- a/contracts/Scarb.lock +++ b/contracts/Scarb.lock @@ -3,8 +3,8 @@ version = 1 [[package]] name = "dojo" -version = "1.0.2" -source = "git+https://github.com/dojoengine/dojo?tag=v1.0.2#8eb8c480676ea8b0fc5d6e59585cdbab1ff8200d" +version = "1.0.3" +source = "git+https://github.com/dojoengine/dojo?tag=v1.0.3#c65c25788d900325fa5e6e9d464da633cfabc468" dependencies = [ "dojo_plugin", ] @@ -12,7 +12,7 @@ dependencies = [ [[package]] name = "dojo_cairo_test" version = "1.0.0-rc.0" -source = "git+https://github.com/dojoengine/dojo?tag=v1.0.2#8eb8c480676ea8b0fc5d6e59585cdbab1ff8200d" +source = "git+https://github.com/dojoengine/dojo?tag=v1.0.3#c65c25788d900325fa5e6e9d464da633cfabc468" dependencies = [ "dojo", ] @@ -20,11 +20,11 @@ dependencies = [ [[package]] name = "dojo_plugin" version = "2.8.4" -source = "git+https://github.com/dojoengine/dojo?tag=v1.0.2#8eb8c480676ea8b0fc5d6e59585cdbab1ff8200d" +source = "git+https://github.com/dojoengine/dojo?tag=v1.0.3#c65c25788d900325fa5e6e9d464da633cfabc468" [[package]] name = "pixelaw" -version = "0.5.10" +version = "0.5.11" dependencies = [ "dojo", "dojo_cairo_test", @@ -33,7 +33,7 @@ dependencies = [ [[package]] name = "pixelaw_test_helpers" -version = "0.5.10" +version = "0.5.11" dependencies = [ "dojo", "dojo_cairo_test", diff --git a/contracts/Scarb.toml b/contracts/Scarb.toml index 26472ba..1c15e02 100644 --- a/contracts/Scarb.toml +++ b/contracts/Scarb.toml @@ -9,12 +9,12 @@ edition = "2024_07" sierra-replace-ids = true [dependencies] -dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.2" } +dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.3" } starknet = "2.8.4" [dev-dependencies] pixelaw_test_helpers = { path = "../test_helpers" } -dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.2" } +dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.3" } [tool.fmt] sort-module-level-items = true diff --git a/contracts/Scarb_deploy.toml b/contracts/Scarb_deploy.toml index a1e39e0..da7c7d3 100644 --- a/contracts/Scarb_deploy.toml +++ b/contracts/Scarb_deploy.toml @@ -9,12 +9,12 @@ edition = "2024_07" sierra-replace-ids = true [dependencies] -dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.2" } +dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.3" } starknet = "2.8.4" [dev-dependencies] pixelaw_test_helpers = { path = "../test_helpers" } -dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.2" } +dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.3" } [tool.fmt] sort-module-level-items = true diff --git a/contracts/dojo_dev.toml b/contracts/dojo_dev.toml index dcded90..2080bfe 100644 --- a/contracts/dojo_dev.toml +++ b/contracts/dojo_dev.toml @@ -11,7 +11,7 @@ mappings = {} rpc_url = "http://localhost:5050/" account_address = "0x127fd5f1fe78a71f8bcd1fec63e3fe2f0486b6ecd5c86a0466c3a21fa5cfcec" private_key = "0xc5b2fcab997346f3ea1c00b002ecf6f382c5f9c9659a3894eb783c5320f912" -world_address = "0x06f130c8e150882e39cbe878c650c8f35c86579180dbc77d0c1cbe169449b5f6" +world_address = "0x2bf4d3aa0dced89d37d8c3b4ff6a05895c0af32ff3baf9b02abf8504e53eaad" [writers] "pixelaw-App" = ["pixelaw-actions"] diff --git a/test_helpers/Scarb.toml b/test_helpers/Scarb.toml index af763d2..c12d6b9 100644 --- a/test_helpers/Scarb.toml +++ b/test_helpers/Scarb.toml @@ -9,8 +9,8 @@ edition = "2024_07" sierra-replace-ids = true [dependencies] -dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.2" } -dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.2" } +dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.3" } +dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.3" } starknet = "2.8.4" [tool.fmt]