Skip to content

Commit

Permalink
[ruby/set] Drop support for Ruby 2
Browse files Browse the repository at this point in the history
  • Loading branch information
knu committed Dec 23, 2023
1 parent da02d08 commit 271c74a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion lib/set.rb
Expand Up @@ -216,7 +216,7 @@
# has been modified while an element in the set.
#
class Set
VERSION = "1.0.4"
VERSION = "1.1.0.dev"

include Enumerable

Expand Down
2 changes: 1 addition & 1 deletion lib/set/set.gemspec
Expand Up @@ -15,7 +15,7 @@ Gem::Specification.new do |spec|
spec.description = %q{Provides a class to deal with collections of unordered, unique values}
spec.homepage = "https://github.com/ruby/set"
spec.licenses = ["Ruby", "BSD-2-Clause"]
spec.required_ruby_version = Gem::Requirement.new(">= 2.7.0")
spec.required_ruby_version = Gem::Requirement.new(">= 3.0.0")

spec.metadata["homepage_uri"] = spec.homepage
spec.metadata["source_code_uri"] = spec.homepage
Expand Down

0 comments on commit 271c74a

Please sign in to comment.