From 19927e7b68a5f058f11a3dbace876ba07c9901b9 Mon Sep 17 00:00:00 2001 From: Andrew Cholakian Date: Tue, 12 Sep 2017 10:52:23 -0500 Subject: [PATCH] Pin redis dep to 3.x.x since 4.x requires ruby 2+ syntax Fixes #59 --- CHANGELOG.md | 3 +++ logstash-input-redis.gemspec | 4 ++-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2a9922..995f500 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +## 3.1.5 + - Pin 'redis' gem dependency to major version range 3.x + ## 3.1.4 - Fix some documentation issues diff --git a/logstash-input-redis.gemspec b/logstash-input-redis.gemspec index 8da4fc3..531f046 100644 --- a/logstash-input-redis.gemspec +++ b/logstash-input-redis.gemspec @@ -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" @@ -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