Skip to content

Commit

Permalink
prepare 5.4.3 release (#118)
Browse files Browse the repository at this point in the history
=
  • Loading branch information
eli-darkly authored Jan 11, 2019
1 parent bc3df4a commit fb0b709
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,10 @@

All notable changes to the LaunchDarkly Ruby SDK will be documented in this file. This project adheres to [Semantic Versioning](http://semver.org).

## [5.4.3] - 2019-01-11
### Changed:
- The SDK is now compatible with `net-http-persistent` 3.x. (Thanks, [CodingAnarchy](https://github.com/launchdarkly/ruby-client/pull/113)!)

## [5.4.2] - 2019-01-04
### Fixed:
- Fixed overly specific dependency versions of `concurrent-ruby` and `semantic`. ([#115](https://github.com/launchdarkly/ruby-client/issues/115))
Expand Down
7 changes: 4 additions & 3 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
PATH
remote: .
specs:
ldclient-rb (5.4.1)
ldclient-rb (5.4.3)
concurrent-ruby (~> 1.0)
faraday (>= 0.9, < 2)
faraday-http-cache (>= 1.3.0, < 3)
http_tools (~> 0.4.5)
json (>= 1.8, < 3)
net-http-persistent (~> 2.9)
net-http-persistent (>= 2.9, < 4.0)
semantic (~> 1.6)
socketry (~> 0.5.1)

Expand Down Expand Up @@ -36,7 +36,8 @@ GEM
rb-inotify (~> 0.9, >= 0.9.7)
ruby_dep (~> 1.2)
multipart-post (2.0.0)
net-http-persistent (2.9.4)
net-http-persistent (3.0.0)
connection_pool (~> 2.2)
rake (10.5.0)
rb-fsevent (0.10.3)
rb-inotify (0.9.10)
Expand Down
2 changes: 1 addition & 1 deletion ldclient-rb.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
spec.add_runtime_dependency "faraday", [">= 0.9", "< 2"]
spec.add_runtime_dependency "faraday-http-cache", [">= 1.3.0", "< 3"]
spec.add_runtime_dependency "semantic", "~> 1.6"
spec.add_runtime_dependency "net-http-persistent", "~> 2.9"
spec.add_runtime_dependency "net-http-persistent", [">= 2.9", "< 4.0"]
spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
spec.add_runtime_dependency "http_tools", '~> 0.4.5'
spec.add_runtime_dependency "socketry", "~> 0.5.1"
Expand Down
2 changes: 1 addition & 1 deletion lib/ldclient-rb/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module LaunchDarkly
VERSION = "5.4.2"
VERSION = "5.4.3"
end

0 comments on commit fb0b709

Please sign in to comment.