-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move ffi dependency forward #81
base: main
Are you sure you want to change the base?
Conversation
This is required for Ruby 3.3, but works on 3.1+ Signed-off-by: Phil Dibowitz <[email protected]>
Quality Gate passedIssues Measures |
@@ -8,29 +8,29 @@ expeditor: | |||
|
|||
steps: | |||
|
|||
- label: run-lint-and-specs-ruby-2.7 | |||
- label: run-lint-and-specs-ruby-3.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Let's just go with a minor version bump and remove this validation?
@@ -13,5 +13,6 @@ Gem::Specification.new do |gem| | |||
gem.require_paths = ["lib"] | |||
gem.required_ruby_version = ">= 2.7" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably should just declare that 3.1 is the minimum now, given that securerandom
triggers:
Resolving dependencies...................................
securerandom-0.4.1 requires ruby version >= 3.1.0, which is incompatible with
the current version, ruby 3.0.7p220
🚨 Error: The command exited with status 1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tag for minor version bump and drop all compatibility with 3.0 or earlier
This is required for Ruby 3.3, but works on 3.1+