Skip to content

Commit 19927e7

Browse files
committed
Pin redis dep to 3.x.x since 4.x requires ruby 2+ syntax
Fixes #59
1 parent 479ce63 commit 19927e7

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
## 3.1.5
2+
- Pin 'redis' gem dependency to major version range 3.x
3+
14
## 3.1.4
25
- Fix some documentation issues
36

logstash-input-redis.gemspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Gem::Specification.new do |s|
22

33
s.name = 'logstash-input-redis'
4-
s.version = '3.1.4'
4+
s.version = '3.1.5'
55
s.licenses = ['Apache License (2.0)']
66
s.summary = "This input will read events from a Redis instance"
77
s.description = "This gem is a Logstash plugin required to be installed on top of the Logstash core pipeline using $LS_HOME/bin/logstash-plugin install gemname. This gem is not a stand-alone program"
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
2323
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"
2424

2525
s.add_runtime_dependency 'logstash-codec-json'
26-
s.add_runtime_dependency 'redis'
26+
s.add_runtime_dependency 'redis', '~> 3'
2727

2828
s.add_development_dependency 'logstash-devutils'
2929
end

0 commit comments

Comments
 (0)