Skip to content

Commit

Permalink
Prepare v0.3.12
Browse files Browse the repository at this point in the history
  • Loading branch information
tarrencev committed Nov 21, 2023
1 parent d955c1a commit db2811d
Show file tree
Hide file tree
Showing 9 changed files with 29 additions and 30 deletions.
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.11"
version = "0.3.12"

[profile.performance]
codegen-units = 1
Expand Down
6 changes: 3 additions & 3 deletions crates/dojo-core/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@ version = 1

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

[[package]]
name = "dojo_plugin"
version = "0.3.11"
source = "git+https://github.com/dojoengine/dojo?tag=v0.3.11#adab82da604669393bf5391439ed4ab1825923d1"
version = "0.3.12"
source = "git+https://github.com/dojoengine/dojo?tag=v0.3.12#12d58f29ec53454317f1f6d265007a053d279288"
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.11"
version = "0.3.12"

[dependencies]
dojo_plugin = { git = "https://github.com/dojoengine/dojo", tag = "v0.3.11" }
dojo_plugin = { git = "https://github.com/dojoengine/dojo", tag = "v0.3.12" }
starknet = "2.3.1"
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.11"
version = "0.3.12"

[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.11"
version = "0.3.12"

[cairo]
sierra-replace-ids = true
Expand Down
8 changes: 4 additions & 4 deletions examples/spawn-and-move/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ version = 1

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

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

[[package]]
name = "dojo_plugin"
version = "0.3.11"
source = "git+https://github.com/dojoengine/dojo?tag=v0.3.11#1e651b5d4d3b79b14a7d8aa29a92062fcb9e6659"
version = "0.3.12"
source = "git+https://github.com/dojoengine/dojo?tag=v0.3.12#12d58f29ec53454317f1f6d265007a053d279288"
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.11"
version = "0.3.12"

[cairo]
sierra-replace-ids = true
Expand Down
3 changes: 1 addition & 2 deletions scripts/prepare_release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ find . -type f -name "*.toml" -exec sed -i "" "s/dojo_plugin = \"$prev_version\"

scripts/clippy.sh

git checkout -b release/v$1
git commit -am "Prepare v$1"
git tag -a "v$1" -m "Version $1"
git push origin release/v$1 --tags
# git push origin --tags

0 comments on commit db2811d

Please sign in to comment.