We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fba605 commit 10e9fbfCopy full SHA for 10e9fbf
bump.sh
@@ -14,6 +14,11 @@ echo "Bumping version to $NEW_VERSION..."
14
15
# Update config.json
16
jq ".artifactVersion = \"$NEW_VERSION\"" config.json > config.json.tmp && mv config.json.tmp config.json
17
-
18
echo "✓ Updated config.json artifactVersion to $NEW_VERSION"
+
19
+# Update README.md - replace all version references in Maven and Gradle examples
20
+sed -i "s/<version>[0-9]\+\.[0-9]\+\.[0-9]\+<\/version>/<version>$NEW_VERSION<\/version>/g" README.md
21
+sed -i "s/\(com\.fastcomments:[^:]\+:\)[0-9]\+\.[0-9]\+\.[0-9]\+/\1$NEW_VERSION/g" README.md
22
+echo "✓ Updated README.md version references to $NEW_VERSION"
23
24
echo "Done! Version bumped to $NEW_VERSION"
0 commit comments