You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(ruby): accept both "_" and "." tag separators from ruby/ruby
ruby/ruby switched its release tag separator from "_" (e.g. v3_4_9)
to "." (e.g. v4.0.4) starting at Ruby 4.0.0. The regex in
find_version_from_git_tags only matched the caller-specified
separator, so VERSION=latest and ADDITIONAL_VERSIONS resolution
silently skipped every 4.x release.
Normalize the tag list with `tr "_" "."` before matching and use "."
canonically in the regex. The `separator` parameter is no longer
consulted for matching, so drop the now-redundant `"_"` argument
from the three ruby call sites.
0 commit comments