Skip to content

Commit

Permalink
bump to core 0.5.14 and dojo 1.0.4
Browse files Browse the repository at this point in the history
  • Loading branch information
thiscaspar committed Dec 4, 2024
1 parent debfcbd commit 58a4b1f
Show file tree
Hide file tree
Showing 7 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "My Project",
"image": "ghcr.io/pixelaw/core:0.5.12",
"image": "ghcr.io/pixelaw/core:0.5.14",
"forwardPorts": [
5050,
8080,
Expand Down Expand Up @@ -32,7 +32,7 @@
// Set *default* container specific settings.json values on container create.
"settings": {
"cairo1.enableLanguageServer": true,
"cairo1.languageServerPath": "${userHome}/.asdf/installs/dojo/1.0.3/bin/dojo-language-server",
"cairo1.languageServerPath": "${userHome}/.asdf/installs/dojo/1.0.4/bin/dojo-language-server",
"cairo1.enableScarb": true,
"cairo1.scarbPath": "${userHome}/.asdf/installs/scarb/2.7.0/bin/scarb",
"lldb.executable": "/usr/bin/lldb",
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci-contracts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,6 @@ jobs:
- uses: asdf-vm/actions/setup@v3
- run: |
asdf plugin add dojo https://github.com/dojoengine/asdf-dojo
asdf install dojo 1.0.3
asdf global dojo 1.0.3
asdf install dojo 1.0.4
asdf global dojo 1.0.4
sozo test
2 changes: 1 addition & 1 deletion .tool-versions
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
dojo 1.0.3
dojo 1.0.4
scarb 2.7.0
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"cairo1.enableLanguageServer": true,
"cairo1.languageServerPath": "${userHome}/.asdf/installs/dojo/1.0.3/bin/dojo-language-server",
"cairo1.languageServerPath": "${userHome}/.asdf/installs/dojo/1.0.4/bin/dojo-language-server",
"cairo1.enableScarb": true,
"cairo1.scarbPath": "${userHome}/.asdf/installs/scarb/2.7.0/bin/scarb",
"cairo1.preferScarbLanguageServer": false
Expand Down
2 changes: 1 addition & 1 deletion README.local.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Follow the asdf installation instructions.

```
asdf plugin add dojo https://github.com/dojoengine/asdf-dojo
asdf install dojo 1.0.3
asdf install dojo 1.0.4
```

### Install scarb
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ The idea is that you'll copy this template and create your own PixeLAW app with
To upgrade Dojo, you have to upgrade Pixelaw Core (see below)

### 4.2 Upgrade Core
The easiest is to do a full-text search/replace on the Core version number (for example `0.5.12`) and replace it with the new version. Then it's easiest to
The easiest is to do a full-text search/replace on the Core version number (for example `0.5.14`) and replace it with the new version. Then it's easiest to
1. Delete the `/target/` folder
1. Delete the `Scarb.lock` file
1. Full Rebuild using `sozo build`
Expand Down
8 changes: 4 additions & 4 deletions Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,13 @@ version = "0.0.0"
sierra-replace-ids = true

[dependencies]
pixelaw = { git = "https://github.com/pixelaw/core", tag = "v0.5.12" }
pixelaw = { git = "https://github.com/pixelaw/core", tag = "v0.5.14" }
#pixelaw = { path = "../core/contracts" }
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.3" }
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.4" }

[dev-dependencies]
dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.3" }
pixelaw_test_helpers = { git = "https://github.com/pixelaw/core", tag = "v0.5.12" }
dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.4" }
pixelaw_test_helpers = { git = "https://github.com/pixelaw/core", tag = "v0.5.14" }
#pixelaw_test_helpers = { path = "../core/test_helpers" }

[[target.starknet-contract]]
Expand Down

0 comments on commit 58a4b1f

Please sign in to comment.