From 774a6361b9a56f7b06f840dc9d85254a4c97e813 Mon Sep 17 00:00:00 2001 From: Chris Barton Date: Tue, 28 Apr 2015 11:12:53 -0700 Subject: [PATCH] bump to 2.4.2 --- Gemfile.lock | 2 +- README.md | 2 +- lib/recurly/version.rb | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index 1eb7a52e4..4e5a861e1 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - recurly (2.4.1) + recurly (2.4.2) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index a1f282beb..d4a723325 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.1' +gem 'recurly', '~> 2.4.2' ``` Recurly will automatically use [Nokogiri](http://nokogiri.org/) (for a nice diff --git a/lib/recurly/version.rb b/lib/recurly/version.rb index e71071079..98ef0d399 100644 --- a/lib/recurly/version.rb +++ b/lib/recurly/version.rb @@ -2,7 +2,7 @@ module Recurly module Version MAJOR = 2 MINOR = 4 - PATCH = 1 + PATCH = 2 PRE = nil VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join('.').freeze