Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare release: v1.0.6 #2801

Merged
merged 1 commit into from
Dec 12, 2024
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
138 changes: 69 additions & 69 deletions Cargo.lock

Large diffs are not rendered by default.

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

[profile.performance]
codegen-units = 1
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.0.5"
version = "1.0.6"
dependencies = [
"dojo_plugin",
]
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 @@ -3,7 +3,7 @@ cairo-version = "=2.8.4"
edition = "2024_07"
description = "The Dojo Core library for autonomous worlds."
name = "dojo"
version = "1.0.5"
version = "1.0.6"

[dependencies]
starknet = "=2.8.4"
Expand Down
2 changes: 1 addition & 1 deletion crates/torii/server/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ form_urlencoded = "1.2.1"
async-trait = "0.1.83"
tokio-tungstenite = "0.20.0"
hyper-tungstenite = "0.11.1"
futures-util.workspace = true
futures-util.workspace = true
2 changes: 1 addition & 1 deletion crates/torii/types-test/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.0.5"
version = "1.0.6"
dependencies = [
"dojo_plugin",
]
Expand Down
2 changes: 1 addition & 1 deletion crates/torii/types-test/Scarb.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
cairo-version = "=2.8.4"
edition = "2024_07"
name = "types_test"
version = "1.0.5"
version = "1.0.6"
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codebase verification

Ohayo sensei! Found some version inconsistencies that need attention!

The version update to 1.0.6 is not consistent across all packages. Here are the mismatched versions:

  • crates/dojo/core-cairo-test/Scarb.toml: version = "1.0.0-rc.0"
  • crates/benches/contracts/Scarb.toml: version = "1.0.0-rc.0"
  • examples/simple/Scarb.toml: version = "0.1.0"
  • examples/game-lib/*/Scarb.toml: version = "0.1.0"
  • crates/katana/contracts/Scarb.toml: version = "0.1.0"

While some packages might intentionally have different versions, the core packages should be aligned with the 1.0.6 release.

🔗 Analysis chain

Ohayo sensei! Version bump looks good!

The version update to 1.0.6 aligns with the release preparation.

Let's verify version consistency across all configuration files:

🏁 Scripts executed

The following scripts were executed for the analysis:

Script:

#!/bin/bash
# Description: Check version consistency across Scarb.toml and Cargo.toml files

echo "Checking Scarb.toml files..."
fd -e toml -x grep -l "version = " {} | while read -r file; do
  echo "=== $file ==="
  grep "version = " "$file"
done

echo -e "\nChecking Cargo.toml files..."
fd Cargo.toml -x grep -l "version = " {} | while read -r file; do
  echo "=== $file ==="
  grep "version = " "$file"
done

Length of output: 17405


[cairo]
sierra-replace-ids = true
Expand Down
2 changes: 1 addition & 1 deletion examples/spawn-and-move/Scarb.lock
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ dependencies = [

[[package]]
name = "dojo"
version = "1.0.5"
version = "1.0.6"
dependencies = [
"dojo_plugin",
]
Expand Down
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.8.4"
name = "dojo_examples"
version = "1.0.5"
version = "1.0.6"
# Use the prelude with the less imports as possible
# from corelib.
edition = "2024_07"
Expand Down
Loading