Skip to content

Commit db81830

Browse files
committed
Core and extension gems now have same version number.
1 parent 5aa707a commit db81830

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

concurrent-ruby-ext.gemspec

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ require 'concurrent/version'
44

55
Gem::Specification.new do |s|
66
s.name = 'concurrent-ruby-ext'
7-
s.version = Concurrent::EXT_VERSION
7+
s.version = Concurrent::VERSION
88
s.platform = Gem::Platform::RUBY
99
s.author = "Jerry D'Antonio"
1010
s.email = '[email protected]'
@@ -14,8 +14,8 @@ Gem::Specification.new do |s|
1414
s.date = Time.now.strftime('%Y-%m-%d')
1515

1616
s.description = <<-EOF
17-
Modern concurrency tools including agents, futures, promises, thread pools, actors, supervisors, and more.
18-
Inspired by Erlang, Clojure, Go, JavaScript, actors, and classic concurrency patterns.
17+
C extensions to optimize the concurrent-ruby gem when running under MRI.
18+
Please see http://concurrent-ruby.com for more information.
1919
EOF
2020

2121
s.files = Dir['ext/**/*.{h,c,cpp}']
@@ -30,5 +30,5 @@ Gem::Specification.new do |s|
3030

3131
s.required_ruby_version = '>= 1.9.3'
3232

33-
s.add_runtime_dependency 'concurrent-ruby', '~> 0.8.0.pre1'
33+
s.add_runtime_dependency 'concurrent-ruby', "~> #{Concurrent::VERSION}"
3434
end

0 commit comments

Comments
 (0)