Skip to content

Commit 843d276

Browse files
tarrencevglihm
andauthored
release(prepare): v1.8.0 (#3374)
* Prepare release: v1.8.0 * update katana version in ci tests * regenerate test db * fix(sozo): reword the override of world address from config --------- Co-authored-by: glihm <7962849+glihm@users.noreply.github.com> Co-authored-by: glihm <dev@glihm.net>
1 parent fbac2d2 commit 843d276

File tree

24 files changed

+56
-61
lines changed

24 files changed

+56
-61
lines changed

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ jobs:
7474
# This puts Katana in the path for integration tests.
7575
- name: Download Katana for integration tests
7676
run: |
77-
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;
77+
curl -L https://github.com/dojoengine/katana/releases/download/v1.7.0/katana_v1.7.0_linux_amd64.tar.gz -o katana.tar.gz;
7878
tar -C /usr/local/bin -xzf katana.tar.gz
7979
8080
- run: |

Cargo.lock

Lines changed: 21 additions & 21 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ license-file = "LICENSE"
4040
repository = "https://github.com/dojoengine/dojo/"
4141
documentation = "https://book.dojoengine.org"
4242
homepage = "https://dojoengine.org"
43-
version = "1.7.2"
43+
version = "1.8.0"
4444

4545
[profile.performance]
4646
codegen-units = 1

bin/sozo/src/utils.rs

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -75,13 +75,8 @@ pub fn get_world_address(
7575

7676
if let Some(wa) = world.address(env)? {
7777
if wa != deterministic_world_address && !world.guest {
78-
ui.warn_block(format!(
79-
"warning: The world address computed from the seed is different from the \
80-
address provided in config:\n - deterministic address: {:#066x}\n - config \
81-
address : {:#066x}\n\nThe address in the config file is preferred, \
82-
consider commenting it out from the config file if you attempt to migrate \
83-
the world with a new seed.\nIf you are upgrading the world, please set your \
84-
current world address in your config file.",
78+
ui.warn(format!(
79+
"Overriding deterministic address `{:#066x}` with config address `{:#066x}`.",
8580
deterministic_world_address, wa
8681
));
8782
}

crates/dojo/core-tests/Scarb.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version = 1
33

44
[[package]]
55
name = "dojo"
6-
version = "1.7.2"
6+
version = "1.8.0"
77
dependencies = [
88
"dojo_cairo_macros",
99
]
@@ -14,7 +14,7 @@ version = "1.8.0"
1414

1515
[[package]]
1616
name = "dojo_core_test"
17-
version = "1.7.2"
17+
version = "1.8.0"
1818
dependencies = [
1919
"dojo",
2020
"dojo_cairo_macros",
@@ -24,7 +24,7 @@ dependencies = [
2424

2525
[[package]]
2626
name = "dojo_snf_test"
27-
version = "1.7.2"
27+
version = "1.8.0"
2828
dependencies = [
2929
"dojo",
3030
"snforge_std",

crates/dojo/core-tests/Scarb.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[package]
22
name = "dojo_core_test"
33
description = "Testing library for Dojo using Starknet foundry."
4-
version = "1.7.2"
4+
version = "1.8.0"
55
edition = "2024_07"
66

77
[dependencies]

crates/dojo/core/Scarb.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version = 1
33

44
[[package]]
55
name = "dojo"
6-
version = "1.7.2"
6+
version = "1.8.0"
77
dependencies = [
88
"dojo_cairo_macros",
99
]

crates/dojo/core/Scarb.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
edition = "2024_07"
33
description = "The Dojo Core library for autonomous worlds."
44
name = "dojo"
5-
version = "1.7.2"
5+
version = "1.8.0"
66
license = "MIT"
77
repository = "https://github.com/dojoengine/dojo"
88
documentation = "https://book.dojoengine.org"

crates/dojo/core/src/world/world_contract.cairo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ pub mod world {
5454

5555
pub const WORLD: felt252 = 0;
5656
pub const DOJO_INIT_SELECTOR: felt252 = selector!("dojo_init");
57-
pub const WORLD_VERSION: felt252 = '1.7.2';
57+
pub const WORLD_VERSION: felt252 = '1.8.0';
5858

5959
#[event]
6060
#[derive(Drop, starknet::Event)]

crates/dojo/dojo-cairo-test/Scarb.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@ version = 1
33

44
[[package]]
55
name = "dojo"
6-
version = "1.7.2"
6+
version = "1.8.0"
77
dependencies = [
88
"dojo_cairo_macros",
99
]
1010

1111
[[package]]
1212
name = "dojo_cairo_macros"
13-
version = "1.7.1"
13+
version = "1.8.0"
1414

1515
[[package]]
1616
name = "dojo_cairo_test"
17-
version = "1.7.2"
17+
version = "1.8.0"
1818
dependencies = [
1919
"dojo",
2020
]

0 commit comments

Comments
 (0)