Skip to content

Commit fb0b709

Browse files
authored
prepare 5.4.3 release (#118)
=
1 parent bc3df4a commit fb0b709

File tree

4 files changed

+10
-5
lines changed

4 files changed

+10
-5
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

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

5+
## [5.4.3] - 2019-01-11
6+
### Changed:
7+
- The SDK is now compatible with `net-http-persistent` 3.x. (Thanks, [CodingAnarchy](https://github.com/launchdarkly/ruby-client/pull/113)!)
8+
59
## [5.4.2] - 2019-01-04
610
### Fixed:
711
- Fixed overly specific dependency versions of `concurrent-ruby` and `semantic`. ([#115](https://github.com/launchdarkly/ruby-client/issues/115))

Gemfile.lock

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
PATH
22
remote: .
33
specs:
4-
ldclient-rb (5.4.1)
4+
ldclient-rb (5.4.3)
55
concurrent-ruby (~> 1.0)
66
faraday (>= 0.9, < 2)
77
faraday-http-cache (>= 1.3.0, < 3)
88
http_tools (~> 0.4.5)
99
json (>= 1.8, < 3)
10-
net-http-persistent (~> 2.9)
10+
net-http-persistent (>= 2.9, < 4.0)
1111
semantic (~> 1.6)
1212
socketry (~> 0.5.1)
1313

@@ -36,7 +36,8 @@ GEM
3636
rb-inotify (~> 0.9, >= 0.9.7)
3737
ruby_dep (~> 1.2)
3838
multipart-post (2.0.0)
39-
net-http-persistent (2.9.4)
39+
net-http-persistent (3.0.0)
40+
connection_pool (~> 2.2)
4041
rake (10.5.0)
4142
rb-fsevent (0.10.3)
4243
rb-inotify (0.9.10)

ldclient-rb.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ Gem::Specification.new do |spec|
3535
spec.add_runtime_dependency "faraday", [">= 0.9", "< 2"]
3636
spec.add_runtime_dependency "faraday-http-cache", [">= 1.3.0", "< 3"]
3737
spec.add_runtime_dependency "semantic", "~> 1.6"
38-
spec.add_runtime_dependency "net-http-persistent", "~> 2.9"
38+
spec.add_runtime_dependency "net-http-persistent", [">= 2.9", "< 4.0"]
3939
spec.add_runtime_dependency "concurrent-ruby", "~> 1.0"
4040
spec.add_runtime_dependency "http_tools", '~> 0.4.5'
4141
spec.add_runtime_dependency "socketry", "~> 0.5.1"

lib/ldclient-rb/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module LaunchDarkly
2-
VERSION = "5.4.2"
2+
VERSION = "5.4.3"
33
end

0 commit comments

Comments
 (0)