Skip to content

Commit

Permalink
bump version rc.2
Browse files Browse the repository at this point in the history
  • Loading branch information
notV4l committed Nov 10, 2024
1 parent 47eb7c1 commit 303b3b7
Show file tree
Hide file tree
Showing 6 changed files with 12 additions and 11 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/contracts.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:

env:
DOJO_VERSION: v1.0.0-rc.1
DOJO_VERSION: v1.0.0-rc.2
SCARB_VERSION: 2.8.4
WORKING_DIRECTORY: ./contracts

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
pull_request:

env:
DOJO_VERSION: v1.0.0-rc.1
DOJO_VERSION: v1.0.0-rc.2
SCARB_VERSION: 2.8.4
WORKING_DIRECTORY: ./packages

Expand Down
6 changes: 3 additions & 3 deletions Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@ dependencies = [
[[package]]
name = "dojo"
version = "1.0.0-rc.0"
source = "git+https://github.com/dojoengine/dojo?tag=v1.0.0-rc.1#c789997f1a7cf5628d6b3fc01ce2851fca7a35bf"
source = "git+https://github.com/dojoengine/dojo?tag=v1.0.0-rc.2#6725a8f20af56213fa7382aa1e158817f3ee623c"
dependencies = [
"dojo_plugin",
]

[[package]]
name = "dojo_cairo_test"
version = "1.0.0-rc.0"
source = "git+https://github.com/dojoengine/dojo?tag=v1.0.0-rc.1#c789997f1a7cf5628d6b3fc01ce2851fca7a35bf"
source = "git+https://github.com/dojoengine/dojo?tag=v1.0.0-rc.2#6725a8f20af56213fa7382aa1e158817f3ee623c"
dependencies = [
"dojo",
]

[[package]]
name = "dojo_plugin"
version = "2.8.4"
source = "git+https://github.com/dojoengine/dojo?tag=v1.0.0-rc.1#c789997f1a7cf5628d6b3fc01ce2851fca7a35bf"
source = "git+https://github.com/dojoengine/dojo?tag=v1.0.0-rc.2#6725a8f20af56213fa7382aa1e158817f3ee623c"
5 changes: 3 additions & 2 deletions Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,11 @@ cairo-version = "2.8.4"
version = "0.0.0"

[workspace.dependencies]
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.0-rc.1" }
dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.0-rc.1" }
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.0-rc.2" }
dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.0-rc.2" }
starknet = "2.8.4"
cairo_test = "2.8.4"

[workspace.tool.fmt]
sort-module-level-items = true

4 changes: 2 additions & 2 deletions contracts/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,13 @@ sierra-replace-ids = true
dev = "sozo clean && sozo build --typescript && sozo migrate plan && sozo migrate apply"

[dependencies]
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.0-rc.1" }
dojo = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.0-rc.2" }
bushido_registry = { path = ".." }
starknet = "2.8.4"
cairo_test = "2.8.4"

[dev-dependencies]
dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.0-rc.1" }
dojo_cairo_test = { git = "https://github.com/dojoengine/dojo", tag = "v1.0.0-rc.2" }

[[target.starknet-contract]]
build-external-contracts = [
Expand Down
4 changes: 2 additions & 2 deletions packages/trophy/src/events/index.cairo
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use bushido_trophy::types::task::Task;

#[derive(Clone, Drop, Serde)]
#[dojo::event(historical: true)]
#[dojo::event]
pub struct TrophyCreation {
#[key]
id: felt252,
Expand All @@ -23,7 +23,7 @@ pub struct TrophyCreation {
}

#[derive(Copy, Drop, Serde)]
#[dojo::event(historical: true)]
#[dojo::event]
pub struct TrophyProgression {
#[key]
player_id: felt252,
Expand Down

0 comments on commit 303b3b7

Please sign in to comment.