## Additional Changes: - Add test configurations and deployment artifacts - Update web assets and build manifests - Add version management scripts - Include local test configs (.bzzz/ directory) - Update internal runtime and agent configurations - Refresh Next.js build artifacts ## Final State: - Complete deployment system working end-to-end - ironwood successfully deployed and operational - All hardcoded values removed from codebase - Config generation and validation fully functional 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
22 lines
488 B
Bash
Executable File
22 lines
488 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# Get current version
|
|
CURRENT_VERSION=$(cat VERSION)
|
|
|
|
# Parse version components
|
|
IFS='.' read -ra VERSION_PARTS <<< "$CURRENT_VERSION"
|
|
MAJOR=${VERSION_PARTS[0]}
|
|
MINOR=${VERSION_PARTS[1]}
|
|
PATCH=${VERSION_PARTS[2]}
|
|
|
|
# Increment patch version
|
|
NEW_PATCH=$((PATCH + 1))
|
|
NEW_VERSION="$MAJOR.$MINOR.$NEW_PATCH"
|
|
|
|
# Write new version
|
|
echo "$NEW_VERSION" > VERSION
|
|
|
|
# Copy to version package
|
|
cp VERSION pkg/version/VERSION
|
|
|
|
echo "🔖 Version bumped: $CURRENT_VERSION → $NEW_VERSION" |