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 dcf8e41 commit da095f1Copy full SHA for da095f1
lib/modules/versioning/ruby/index.ts
@@ -105,7 +105,7 @@ const getNewValue = ({
105
if (isVersion(currentValue)) {
106
newValue =
107
currentValue.startsWith('v') && !newVersion.startsWith('v')
108
- ? 'v' + newVersion
+ ? `v${newVersion}`
109
: newVersion;
110
} else if (currentValue.replace(regEx(/^=\s*/), '') === currentVersion) {
111
newValue = currentValue.replace(currentVersion, newVersion);
0 commit comments