diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..c6130ee --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,20 @@ +## [v1.3.1] - 2016-02-07 + +- Fix backwards incompatibility + - Refers to issue #10 + +- [Performance improvements](https://github.com/tawan/active-elastic-job/commit/1f1c72d6d10a3e0c42ad305b29afb1d55fcb2561) + +- Fix typo + - [#166](https://github.com/phstc/shoryuken/pull/166) + +## [v1.3.0] - 2016-02-06 + +- Verify MD5 hashes responses from SQS API + - Closes issue #4 + +- Cache queue urls + - Closes issue #3 + +- Avoid interfering with other aws-sqsd requests + - Closes issue #9 diff --git a/Gemfile.lock b/Gemfile.lock index b36f9b5..fde761a 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - active_elastic_job (1.3.0) + active_elastic_job (1.3.1) aws-sdk (~> 2) rails (~> 4.2) @@ -44,12 +44,12 @@ GEM thread_safe (~> 0.3, >= 0.3.4) tzinfo (~> 1.1) arel (6.0.3) - aws-sdk (2.2.11) - aws-sdk-resources (= 2.2.11) - aws-sdk-core (2.2.11) + aws-sdk (2.2.14) + aws-sdk-resources (= 2.2.14) + aws-sdk-core (2.2.14) jmespath (~> 1.0) - aws-sdk-resources (2.2.11) - aws-sdk-core (= 2.2.11) + aws-sdk-resources (2.2.14) + aws-sdk-core (= 2.2.14) benchmark-ips (2.3.0) builder (3.2.2) byebug (8.2.2) diff --git a/lib/active_elastic_job/version.rb b/lib/active_elastic_job/version.rb index 169f38a..e6f3815 100644 --- a/lib/active_elastic_job/version.rb +++ b/lib/active_elastic_job/version.rb @@ -2,7 +2,7 @@ module ActiveElasticJob module VERSION MAJOR = 1 MINOR = 3 - TINY = 0 + TINY = 1 PRE = nil STRING = [MAJOR, MINOR, TINY, PRE].compact.join('.')