From 81741e6f102bcbb47d6e7ee1d7320e044c4926a8 Mon Sep 17 00:00:00 2001 From: Rhys Arkins <rhys@arkins.net> Date: Sat, 15 May 2021 17:15:56 +0200 Subject: [PATCH] fix(ruby): replace if widening --- lib/versioning/ruby/index.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/versioning/ruby/index.ts b/lib/versioning/ruby/index.ts index 76c69df1f1..d711e6b65a 100644 --- a/lib/versioning/ruby/index.ts +++ b/lib/versioning/ruby/index.ts @@ -110,6 +110,7 @@ const getNewValue = ({ newValue = bump({ range: vtrim(currentValue), to: vtrim(newVersion) }); break; case 'auto': + case 'widen': case 'replace': newValue = replace({ range: vtrim(currentValue), -- GitLab