From 569838a22405c7dc596fc632bc7e293155397afc Mon Sep 17 00:00:00 2001 From: Benjamin Eckel Date: Wed, 13 Jan 2016 16:00:58 -0800 Subject: [PATCH] Bump to 2.5.0 --- CHANGELOG.md | 5 +++++ Gemfile.lock | 2 +- README.md | 2 +- lib/recurly/version.rb | 4 ++-- 4 files changed, 9 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index afcf933c4..42172e73e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ ## Unreleased + +## v2.5.0 (2016-01-13) + +* Fix redemption destroy path for accounts with multiple redemptions [PR](https://github.com/recurly/recurly-client-ruby/pull/227) + ## v2.4.9 (2015-11-18) diff --git a/Gemfile.lock b/Gemfile.lock index 68d4c7acd..39e543526 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - recurly (2.4.9) + recurly (2.5.0) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index 232fc18f9..13a18bdd7 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.9' +gem 'recurly', '~> 2.5.0' ``` Recurly will automatically use [Nokogiri](http://nokogiri.org/) (for a nice diff --git a/lib/recurly/version.rb b/lib/recurly/version.rb index 231c96020..94274c07d 100644 --- a/lib/recurly/version.rb +++ b/lib/recurly/version.rb @@ -1,8 +1,8 @@ module Recurly module Version MAJOR = 2 - MINOR = 4 - PATCH = 9 + MINOR = 5 + PATCH = 0 PRE = nil VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join('.').freeze