Skip to content

Commit

Permalink
Pin redis dep to 3.x.x since 4.x requires ruby 2+ syntax
Browse files Browse the repository at this point in the history
Fixes #59
  • Loading branch information
andrewvc committed Sep 12, 2017
1 parent 479ce63 commit 19927e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
## 3.1.5
- Pin 'redis' gem dependency to major version range 3.x

## 3.1.4
- Fix some documentation issues

Expand Down
4 changes: 2 additions & 2 deletions logstash-input-redis.gemspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Gem::Specification.new do |s|

s.name = 'logstash-input-redis'
s.version = '3.1.4'
s.version = '3.1.5'
s.licenses = ['Apache License (2.0)']
s.summary = "This input will read events from a Redis instance"
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"
Expand All @@ -23,7 +23,7 @@ Gem::Specification.new do |s|
s.add_runtime_dependency "logstash-core-plugin-api", ">= 1.60", "<= 2.99"

s.add_runtime_dependency 'logstash-codec-json'
s.add_runtime_dependency 'redis'
s.add_runtime_dependency 'redis', '~> 3'

s.add_development_dependency 'logstash-devutils'
end
Expand Down

0 comments on commit 19927e7

Please sign in to comment.