File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed
Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change 22
33All notable changes to the LaunchDarkly Ruby SDK will be documented in this file. This project adheres to [ Semantic Versioning] ( http://semver.org ) .
44
5+ ## [ 2.1.1] - 2017-03-28
6+ ## Changed
7+ - Bumped nio4r to 2.0
8+
59## [ 2.0.6] - 2017-02-10
610## Changed
711- Improved handling of http status codes that may not be integers.
Original file line number Diff line number Diff line change 11machine :
22 environment :
3- RUBIES : " ruby-2.2. 3;ruby-2.1.7;ruby-2.0.0;ruby-1.9.3;jruby-1.7.22"
3+ RUBIES : " ruby-2.4.1;ruby-2.2. 3;ruby-2.1.7;ruby-2.0.0;ruby-1.9.3;jruby-1.7.22"
44
55dependencies :
66 cache_directories :
Original file line number Diff line number Diff line change @@ -33,7 +33,12 @@ Gem::Specification.new do |spec|
3333 spec . add_runtime_dependency "hashdiff" , "~> 0.2"
3434 spec . add_runtime_dependency "ld-celluloid-eventsource" , "~> 0.9.0"
3535 spec . add_runtime_dependency "celluloid" , "~> 0.18.0.pre" # transitive dep; specified here for more control
36- spec . add_runtime_dependency "nio4r" , "~> 1.1" # for maximum ruby version compatibility.
36+
37+ if RUBY_VERSION >= '2.2.2'
38+ spec . add_runtime_dependency "nio4r" , "< 3" # for maximum ruby version compatibility.
39+ else
40+ spec . add_runtime_dependency "nio4r" , "~> 1.1" # for maximum ruby version compatibility.
41+ end
3742
3843 spec . add_runtime_dependency "waitutil" , "0.2"
3944end
Original file line number Diff line number Diff line change 11module LaunchDarkly
2- VERSION = "2.1.0 "
2+ VERSION = "2.1.1 "
33end
You can’t perform that action at this time.
0 commit comments