From 7e98737be23c50c7533e604508bc06893d96e01a Mon Sep 17 00:00:00 2001 From: Benjamin Eckel Date: Wed, 18 Nov 2015 10:55:47 -0800 Subject: [PATCH] bump to 2.4.9 --- CHANGELOG.md | 5 +++++ Gemfile.lock | 2 +- README.md | 2 +- lib/recurly/version.rb | 2 +- 4 files changed, 8 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b368eddd..afcf933c4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ ## Unreleased + +## v2.4.9 (2015-11-18) + +* Fixed array change tracking issue around redemptions [PR](https://github.com/recurly/recurly-client-ruby/pull/223) + ## v2.4.8 (2015-10-21) diff --git a/Gemfile.lock b/Gemfile.lock index 3f9cba026..68d4c7acd 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - recurly (2.4.8) + recurly (2.4.9) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index 49b54fcc2..232fc18f9 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,7 @@ Recurly is packaged as a Ruby gem. We recommend you install it with [Bundler](http://gembundler.com/) by adding the following line to your Gemfile: ``` ruby -gem 'recurly', '~> 2.4.8' +gem 'recurly', '~> 2.4.9' ``` Recurly will automatically use [Nokogiri](http://nokogiri.org/) (for a nice diff --git a/lib/recurly/version.rb b/lib/recurly/version.rb index 62d9e0514..231c96020 100644 --- a/lib/recurly/version.rb +++ b/lib/recurly/version.rb @@ -2,7 +2,7 @@ module Recurly module Version MAJOR = 2 MINOR = 4 - PATCH = 8 + PATCH = 9 PRE = nil VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join('.').freeze