Skip to content

Commit 8040475

Browse files
committed
Drop third digit of required Ruby version
1 parent 13f44b3 commit 8040475

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
259259

260260
## Supported Ruby versions
261261

262-
* MRI 2.2.10 and above
262+
* MRI 2.2 and above
263263
* Latest JRuby 9000
264264
* Latest TruffleRuby
265265

concurrent-ruby-edge.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ be obeyed though. Features developed in `concurrent-ruby-edge` are expected to m
2323
Please see http://concurrent-ruby.com for more information.
2424
TXT
2525

26-
s.required_ruby_version = '>= 2.2.10'
26+
s.required_ruby_version = '>= 2.2'
2727

2828
s.add_runtime_dependency 'concurrent-ruby', "~> #{Concurrent::VERSION}"
2929
end

concurrent-ruby-ext.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
2121
s.require_paths = ['lib']
2222
s.extensions = 'ext/concurrent-ruby-ext/extconf.rb'
2323

24-
s.required_ruby_version = '>= 2.2.10'
24+
s.required_ruby_version = '>= 2.2'
2525

2626
s.add_runtime_dependency 'concurrent-ruby', "= #{Concurrent::VERSION}"
2727
end

concurrent-ruby.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,5 @@ Gem::Specification.new do |s|
2727
TXT
2828
s.metadata["source_code_uri"] = "https://github.com/ruby-concurrency/concurrent-ruby"
2929
s.metadata["changelog_uri"] = "https://github.com/ruby-concurrency/concurrent-ruby/blob/master/CHANGELOG.md"
30-
s.required_ruby_version = '>= 2.2.10'
30+
s.required_ruby_version = '>= 2.2'
3131
end

0 commit comments

Comments
 (0)