Skip to content

Commit

Permalink
Prepare v0.3.11
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrencev committed Nov 21, 2023
1 parent 9996919 commit 1e651b5
Show file tree
Hide file tree
Showing 14 changed files with 50 additions and 31 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -191,6 +191,13 @@ jobs:
body: ${{ needs.prepare.outputs.changelog }}
files: |
${{ steps.artifacts.outputs.file_name }}
- name: Upload binaries
uses: actions/upload-artifact@v2
with:
name: binaries
path: target/
retention-days: 1

cleanup:
name: Release cleanup
Expand Down Expand Up @@ -226,6 +233,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Download binaries
uses: actions/download-artifact@v2
with:
name: binaries
path: target/

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

Expand Down Expand Up @@ -255,6 +268,12 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v2

- name: Download binaries
uses: actions/download-artifact@v2
with:
name: binaries
path: target/

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

Expand Down
30 changes: 15 additions & 15 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ edition = "2021"
license = "Apache-2.0"
license-file = "LICENSE"
repository = "https://github.com/dojoengine/dojo/"
version = "0.3.10"
version = "0.3.11"

[profile.performance]
codegen-units = 1
Expand Down
4 changes: 2 additions & 2 deletions crates/dojo-core/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
cairo-version = "2.3.1"
description = "The Dojo Core library for autonomous worlds."
name = "dojo"
version = "0.3.10"
version = "0.3.11"

[dependencies]
dojo_plugin = "0.3.10"
dojo_plugin = "0.3.11"
starknet = "2.3.1"
2 changes: 1 addition & 1 deletion crates/dojo-defi/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cairo-version = "2.3.1"
description = "Implementations of a defi primitives for the Dojo framework"
name = "dojo_defi"
version = "0.3.10"
version = "0.3.11"

[lib]

Expand Down
2 changes: 1 addition & 1 deletion crates/dojo-erc/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cairo-version = "2.3.1"
description = "Implementations of ERC standards for the Dojo framework"
name = "dojo_erc"
version = "0.3.10"
version = "0.3.11"

[cairo]
sierra-replace-ids = true
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.3.10"
version = "0.3.11"

[cairo-plugin]
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
cairo-version = "2.3.1"
name = "test_crate"
version = "0.3.10"
version = "0.3.11"

[cairo]
sierra-replace-ids = true
Expand Down
2 changes: 1 addition & 1 deletion crates/dojo-physics/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cairo-version = "2.0.0-rc4"
description = "Implementations of a physics library for the Dojo framework"
name = "dojo_physics"
version = "0.3.10"
version = "0.3.11"

[dependencies]
cubit = { git = "https://github.com/influenceth/cubit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/dojo-physics/examples/projectile/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "projectile"
version = "0.3.10"
version = "0.3.11"

[dependencies]
cubit = { git = "https://github.com/influenceth/cubit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/dojo-primitives/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cairo-version = "2.3.1"
description = "Implementations of common primitives for the Dojo games"
name = "dojo_primitives"
version = "0.3.10"
version = "0.3.11"

[lib]

Expand Down
4 changes: 2 additions & 2 deletions crates/torii/graphql/src/tests/types-test/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,14 @@ version = 1

[[package]]
name = "dojo"
version = "0.3.10"
version = "0.3.11"
dependencies = [
"dojo_plugin",
]

[[package]]
name = "dojo_plugin"
version = "0.3.10"
version = "0.3.11"

[[package]]
name = "types_test"
Expand Down
6 changes: 3 additions & 3 deletions examples/spawn-and-move/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ version = 1

[[package]]
name = "dojo"
version = "0.3.10"
version = "0.3.11"
dependencies = [
"dojo_plugin",
]

[[package]]
name = "dojo_examples"
version = "0.3.10"
version = "0.3.11"
dependencies = [
"dojo",
]

[[package]]
name = "dojo_plugin"
version = "0.3.10"
version = "0.3.11"
2 changes: 1 addition & 1 deletion examples/spawn-and-move/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
cairo-version = "2.3.1"
name = "dojo_examples"
version = "0.3.10"
version = "0.3.11"

[cairo]
sierra-replace-ids = true
Expand Down

0 comments on commit 1e651b5

Please sign in to comment.