-
Notifications
You must be signed in to change notification settings - Fork 18
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
Bump up to 0.8.0 #133
Bump up to 0.8.0 #133
Conversation
Signed-off-by: Yu Ishikawa <yu-iskw@users.noreply.github.com>
WalkthroughThis pull request focuses on updating the documentation and version information for the Changes
Possibly related PRs
Poem
📜 Recent review detailsConfiguration used: CodeRabbit UI 📒 Files selected for processing (2)
✅ Files skipped from review due to trivial changes (1)
🔇 Additional comments (2)README.md (2)Line range hint The warning section effectively communicates version constraints, migration guidance, and future considerations regarding pydantic compatibility.
The compatibility table update correctly reflects the extended dbt support (up to 1.9) for version 0.8.0 while maintaining the pydantic v2 requirement. Let's verify version consistency across the codebase: ✅ Verification successfulVersion 0.8.0 is consistently defined across the codebase The version 0.8.0 is correctly set in 🏁 Scripts executedThe following scripts were executed for the analysis: Script: #!/bin/bash
# Description: Verify version numbers across the codebase
# Expected: Version "0.8.0" should be consistent
# Check version in setup.py/pyproject.toml
echo "Checking version in package configuration..."
rg -l "version.*0\.8\.0" "setup.py|pyproject.toml"
# Check version in __init__.py
echo "Checking version in __init__.py..."
rg "__version__.*0\.8\.0" "dbt_artifacts_parser/__init__.py"
# Check for any remaining references to rc versions
echo "Checking for remaining rc references..."
rg "0\.8\.0rc[0-9]"
Length of output: 488 Script: #!/bin/bash
# Let's verify the version information with more precise commands
# Check for pyproject.toml first
echo "Looking for pyproject.toml..."
fd pyproject.toml
# Check version in all Python files
echo "Checking version strings in Python files..."
rg "version.*=.*['\"]0\.8" -A 1
# Check for any remaining RC references in the entire codebase
echo "Checking for any RC references..."
rg -i "rc[0-9]|release.candidate"
# Check package metadata
echo "Checking package metadata..."
fd "setup.cfg|setup.py"
Length of output: 70207 Script: #!/bin/bash
# Let's check the version information in pyproject.toml
# First, let's see the content of pyproject.toml
echo "Content of pyproject.toml:"
cat pyproject.toml
# Let's also check any version references in the package
echo -e "\nChecking version references in Python files:"
rg -g "*.py" "version.*=.*['\"]0\.8"
Length of output: 2109 Thank you for using CodeRabbit. We offer it for free to the OSS community and would appreciate your support in helping us grow. If you find it useful, would you consider giving us a shout-out on your favorite social media? 🪧 TipsChatThere are 3 ways to chat with CodeRabbit:
Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments. CodeRabbit Commands (Invoked using PR comments)
Other keywords and placeholders
CodeRabbit Configuration File (
|
No description provided.