Skip to content
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

gems(deps): update securerandom requirement from ~> 0.3.0 to >= 0.3, < 0.5 #7

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion uuid_v7.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ Gem::Specification.new do |spec|
spec.add_dependency "activemodel", ">= 7.0" # 7 and above
spec.add_dependency "activesupport", ">= 7.0" # 7 and above
spec.add_dependency "base58", "~> 0.2.3" # Used to convert between integers and base58 strings.
spec.add_dependency "securerandom", "~> 0.3.0" # Needed for SecureRandom.uuid_v7 until we upgrade to Ruby 3.3
spec.add_dependency "securerandom", ">= 0.3", "< 0.5" # Needed for SecureRandom.uuid_v7 until we upgrade to Ruby 3.3
spec.add_dependency "zeitwerk", "~> 2.5" # Used to autoload classes

# spec.add_dependency "example-gem", "~> 1.0"
Expand Down