-
Notifications
You must be signed in to change notification settings - Fork 174
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.0 #2676
Prepare release: v1.0.0 #2676
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
cairo-version = "=2.8.4" | ||
edition = "2024_07" | ||
name = "types_test" | ||
version = "1.0.0-rc.0" | ||
version = "1.0.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Ohayo! Version mismatch detected across packages, sensei! The version update to "1.0.0" in
While the core package ( 🔗 Analysis chainOhayo! LGTM on the version update, sensei! The version update from "1.0.0-rc.0" to "1.0.0" aligns with the release preparation objectives. Let's verify the version alignment across related packages: 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check version consistency across Scarb.toml files
# Expected: All related packages should be updated to 1.0.0
echo "Checking version consistency across Scarb.toml files..."
fd -e toml -x grep -H "version = " {}
Length of output: 274 Script: #!/bin/bash
# Let's try a more reliable approach to find and check versions
echo "Checking all Scarb.toml files and their versions..."
find . -name "Scarb.toml" -type f -exec sh -c 'echo "=== $1 ==="; cat "$1" | grep -E "^version = "' sh {} \;
echo -e "\nChecking cairo versions..."
find . -name "Scarb.toml" -type f -exec sh -c 'echo "=== $1 ==="; cat "$1" | grep -E "cairo-version = "' sh {} \;
Length of output: 2130 |
||
|
||
[cairo] | ||
sierra-replace-ids = true | ||
|
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.0-rc.0" | ||
version = "1.0.0" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 💡 Codebase verification Ohayo! Version inconsistency detected, sensei! The version update to 1.0.0 in examples/spawn-and-move/Scarb.toml needs attention as we found mixed versions across the codebase:
Please ensure all related packages are updated consistently to avoid potential compatibility issues. 🔗 Analysis chainOhayo! Version update to 1.0.0 looks good, sensei! The transition from RC to stable version aligns with the release preparation. Let's verify version consistency across the workspace: 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Check if all Scarb.toml files are updated to version 1.0.0
echo "Checking version consistency across Scarb.toml files..."
fd -e toml -x grep -l "version = " {} \; | xargs grep "version = "
Length of output: 256 Script: #!/bin/bash
# Let's try a different approach to find Scarb.toml files and their versions
echo "Searching for all Scarb.toml files..."
fd "Scarb.toml" --type f -x cat {}
# Also search for any version-related patterns in the codebase
echo -e "\nSearching for version patterns in Scarb.toml files..."
rg "version\s*=\s*['\"]1\.0\.0" --type toml
Length of output: 6293 |
||
# Use the prelude with the less imports as possible | ||
# from corelib. | ||
edition = "2024_07" | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💡 Codebase verification
Version inconsistencies detected across Scarb.toml files
Ohayo sensei! I found several inconsistencies in version numbers across Scarb.toml files:
These inconsistencies should be addressed to maintain version alignment across the project. Please update all Scarb.toml files to use version "1.0.0" to match the target version.
🔗 Analysis chain
Verify version consistency across the project.
Let's ensure all related files are updated to the same version.
🏁 Scripts executed
The following scripts were executed for the analysis:
Script:
Length of output: 4114