From 9d5314ff217b144d463dae81b02942e8d1b22ca8 Mon Sep 17 00:00:00 2001 From: Tawan Sierek Date: Tue, 9 Feb 2016 10:51:39 +0100 Subject: [PATCH] Prepare v1.4.0 --- CHANGELOG.md | 6 ++++++ Gemfile.lock | 2 +- lib/active_elastic_job/version.rb | 4 ++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c1f0bef..1949bc9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +## [v1.4.0] - 2016-02-09 +- Disable middleware that processes SQS daemon request with an environment variable + - Closes [issue #12](https://github.com/tawan/active-elastic-job/issues/12) +- Check if SQS daemon request originates from localhost + - Closes [issue #13]((https://github.com/tawan/active-elastic-job/issues/13) + ## [v1.3.2] - 2016-02-08 - Fix worker environments running Puma servers. Remove underscore from header. - Close [issue #15](https://github.com/tawan/active-elastic-job/issues/15) diff --git a/Gemfile.lock b/Gemfile.lock index 22ce73e..6962cdc 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_elastic_job (1.3.2) + active_elastic_job (1.4.0) aws-sdk (~> 2) rails (~> 4.2) diff --git a/lib/active_elastic_job/version.rb b/lib/active_elastic_job/version.rb index 1fcbd60..57d75f6 100644 --- a/lib/active_elastic_job/version.rb +++ b/lib/active_elastic_job/version.rb @@ -1,8 +1,8 @@ module ActiveElasticJob module VERSION MAJOR = 1 - MINOR = 3 - TINY = 2 + MINOR = 4 + TINY = 0 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')