Skip to content

Commit

Permalink
Version 3.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
JonRowe committed Dec 28, 2019
1 parent 1120c26 commit b77634d
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
5 changes: 3 additions & 2 deletions Changelog.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
### Development
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.0...master)
### 3.9.1 / 2019-12-28
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.9.0...v3.9.1)

Bug Fixes:

* Prevent bisect command from blocking when number of specs exceeds file
descriptor limit on OSX or Linux. (Benoit Tigeot, #2669)
* Prevent warnings being issued on Ruby 2.7.0. (Jon Rowe, #2680)

### 3.9.0 / 2019-10-07
[Full Changelog](http://github.com/rspec/rspec-core/compare/v3.8.2...v3.9.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/rspec/core/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ module Core
# Version information for RSpec Core.
module Version
# Current version of RSpec Core, in semantic versioning format.
STRING = '3.9.0'
STRING = '3.9.1'
end
end
end
2 changes: 1 addition & 1 deletion rspec-core.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency "rspec-support", "= #{RSpec::Core::Version::STRING}"
else
# rspec-support must otherwise match our major/minor version
s.add_runtime_dependency "rspec-support", "~> #{RSpec::Core::Version::STRING.split('.')[0..1].concat(['0']).join('.')}"
s.add_runtime_dependency "rspec-support", "~> #{RSpec::Core::Version::STRING.split('.')[0..1].concat(['1']).join('.')}"
end

s.add_development_dependency "cucumber", "~> 1.3"
Expand Down

0 comments on commit b77634d

Please sign in to comment.