Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
# This puts Katana in the path for integration tests.
- name: Download Katana for integration tests
run: |
curl -L https://github.com/dojoengine/katana/releases/download/v1.7.0-alpha.3/katana_v1.7.0-alpha.3_linux_amd64.tar.gz -o katana.tar.gz;
curl -L https://github.com/dojoengine/katana/releases/download/v1.7.0/katana_v1.7.0_linux_amd64.tar.gz -o katana.tar.gz;
tar -C /usr/local/bin -xzf katana.tar.gz

- run: |
Expand Down
42 changes: 21 additions & 21 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 @@ -40,7 +40,7 @@ license-file = "LICENSE"
repository = "https://github.com/dojoengine/dojo/"
documentation = "https://book.dojoengine.org"
homepage = "https://dojoengine.org"
version = "1.7.2"
version = "1.8.0"

[profile.performance]
codegen-units = 1
Expand Down
9 changes: 2 additions & 7 deletions bin/sozo/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,8 @@ pub fn get_world_address(

if let Some(wa) = world.address(env)? {
if wa != deterministic_world_address && !world.guest {
ui.warn_block(format!(
"warning: The world address computed from the seed is different from the \
address provided in config:\n - deterministic address: {:#066x}\n - config \
address : {:#066x}\n\nThe address in the config file is preferred, \
consider commenting it out from the config file if you attempt to migrate \
the world with a new seed.\nIf you are upgrading the world, please set your \
current world address in your config file.",
ui.warn(format!(
"Overriding deterministic address `{:#066x}` with config address `{:#066x}`.",
deterministic_world_address, wa
));
}
Expand Down
6 changes: 3 additions & 3 deletions crates/dojo/core-tests/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version = 1

[[package]]
name = "dojo"
version = "1.7.2"
version = "1.8.0"
dependencies = [
"dojo_cairo_macros",
]
Expand All @@ -14,7 +14,7 @@ version = "1.8.0"

[[package]]
name = "dojo_core_test"
version = "1.7.2"
version = "1.8.0"
dependencies = [
"dojo",
"dojo_cairo_macros",
Expand All @@ -24,7 +24,7 @@ dependencies = [

[[package]]
name = "dojo_snf_test"
version = "1.7.2"
version = "1.8.0"
dependencies = [
"dojo",
"snforge_std",
Expand Down
2 changes: 1 addition & 1 deletion crates/dojo/core-tests/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "dojo_core_test"
description = "Testing library for Dojo using Starknet foundry."
version = "1.7.2"
version = "1.8.0"
edition = "2024_07"

[dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/dojo/core/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version = 1

[[package]]
name = "dojo"
version = "1.7.2"
version = "1.8.0"
dependencies = [
"dojo_cairo_macros",
]
Expand Down
2 changes: 1 addition & 1 deletion crates/dojo/core/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
edition = "2024_07"
description = "The Dojo Core library for autonomous worlds."
name = "dojo"
version = "1.7.2"
version = "1.8.0"
license = "MIT"
repository = "https://github.com/dojoengine/dojo"
documentation = "https://book.dojoengine.org"
Expand Down
2 changes: 1 addition & 1 deletion crates/dojo/core/src/world/world_contract.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ pub mod world {

pub const WORLD: felt252 = 0;
pub const DOJO_INIT_SELECTOR: felt252 = selector!("dojo_init");
pub const WORLD_VERSION: felt252 = '1.7.2';
pub const WORLD_VERSION: felt252 = '1.8.0';

#[event]
#[derive(Drop, starknet::Event)]
Expand Down
6 changes: 3 additions & 3 deletions crates/dojo/dojo-cairo-test/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ version = 1

[[package]]
name = "dojo"
version = "1.7.2"
version = "1.8.0"
dependencies = [
"dojo_cairo_macros",
]

[[package]]
name = "dojo_cairo_macros"
version = "1.7.1"
version = "1.8.0"

[[package]]
name = "dojo_cairo_test"
version = "1.7.2"
version = "1.8.0"
dependencies = [
"dojo",
]
2 changes: 1 addition & 1 deletion crates/dojo/dojo-cairo-test/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "dojo_cairo_test"
description = "Testing library for Dojo using cairo test runner."
license = "MIT"
version = "1.7.2"
version = "1.8.0"
edition = "2024_07"
cairo-version = "2.13"
repository = "https://github.com/dojoengine/dojo"
Expand Down
6 changes: 3 additions & 3 deletions crates/dojo/dojo-snf-test/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,18 +3,18 @@ version = 1

[[package]]
name = "dojo"
version = "1.7.2"
version = "1.8.0"
dependencies = [
"dojo_cairo_macros",
]

[[package]]
name = "dojo_cairo_macros"
version = "1.7.1"
version = "1.8.0"

[[package]]
name = "dojo_snf_test"
version = "1.7.2"
version = "1.8.0"
dependencies = [
"dojo",
"snforge_std",
Expand Down
2 changes: 1 addition & 1 deletion crates/dojo/dojo-snf-test/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name = "dojo_snf_test"
description = "Testing library for Dojo using Starknet Foundry."
license = "MIT"
version = "1.7.2"
version = "1.8.0"
edition = "2024_07"
repository = "https://github.com/dojoengine/dojo"
documentation = "https://book.dojoengine.org"
Expand Down
2 changes: 1 addition & 1 deletion crates/macros/merge-options/macro_test/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "merge-options-macro-test"
version = "1.7.2"
version = "1.8.0"
edition = "2021"
publish = false

Expand Down
2 changes: 1 addition & 1 deletion examples/game-lib/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ members = [
]

[workspace.package]
version = "1.7.2"
version = "1.8.0"
description = "Example game library for Dojo"
edition = "2024_07"
license = "MIT"
Expand Down
2 changes: 1 addition & 1 deletion examples/game-lib/armory/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "armory"
version = "1.7.2"
version = "1.8.0"
description = "An armory of epic weapons."
edition.workspace = true

Expand Down
2 changes: 1 addition & 1 deletion examples/game-lib/bestiary/Scarb.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "bestiary"
version = "1.7.2"
version = "1.8.0"
description = "Some scary foes to fight."
edition.workspace = true

Expand Down
6 changes: 3 additions & 3 deletions examples/simple/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ version = 1

[[package]]
name = "dojo"
version = "1.7.2"
version = "1.8.0"
dependencies = [
"dojo_cairo_macros",
]
Expand All @@ -14,14 +14,14 @@ version = "1.8.0"

[[package]]
name = "dojo_cairo_test"
version = "1.7.2"
version = "1.8.0"
dependencies = [
"dojo",
]

[[package]]
name = "dojo_simple"
version = "1.7.2"
version = "1.8.0"
dependencies = [
"dojo",
"dojo_cairo_macros",
Expand Down
Loading
Loading