Lines Matching full:version
5 .PHONY: test check clean dist release version help
18 @echo " version [VERSION=x.y.z] - Update version in all files"
20 @echo " release [VERSION=x.y.z] - Complete release workflow"
23 @echo " status - Show current version and git status"
45 # Update version in all files
46 version: target
47 ifndef VERSION
48 @echo "Error: VERSION parameter required"
49 @echo "Usage: make version VERSION=1.2.3"
52 @echo "Updating version to $(VERSION)..."
53 php build/update-version.php $(VERSION)
54 @echo "Version update complete."
63 ifndef VERSION
64 @echo "Error: VERSION parameter required"
65 @echo "Usage: make release VERSION=1.2.3"
68 @echo "Starting release workflow for version $(VERSION)..."
69 @make version VERSION=$(VERSION)
72 @echo " git commit -m 'Release version $(VERSION)'"
73 @echo " git tag v$(VERSION)"