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
The Gemfile is using the "~>" operator to install Rack, that way we
always get the latest available version for a given version.
The current versions in the CI matrix are using only major and minor
version (like 3.2), meaning bundler will install the latest available
minor version (meaning if a version 3.3 is released it will be installed
instead of the 3.2 series). To fix that, it’s just a matter of providing
a patch level. So providing 3.2.0 will only install 3.2 versions, as
wanted.
0 commit comments