From a897d9b5b7224f282b265b6cf4c88a8e3f8c2679 Mon Sep 17 00:00:00 2001 From: andrew morton Date: Wed, 8 Nov 2017 15:21:11 -0700 Subject: [PATCH] Bump versions for 2.2.4 --- 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 644926489..8d238e821 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - recurly (2.2.3) + recurly (2.2.4) GEM remote: https://rubygems.org/ diff --git a/README.md b/README.md index 1af3664a2..d2963460e 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.2.3' +gem 'recurly', '~> 2.2.4' ``` Recurly will automatically use [Nokogiri](http://nokogiri.org/) (for a nice diff --git a/lib/recurly/version.rb b/lib/recurly/version.rb index 477d35162..03dba6c47 100644 --- a/lib/recurly/version.rb +++ b/lib/recurly/version.rb @@ -2,7 +2,7 @@ module Recurly module Version MAJOR = 2 MINOR = 2 - PATCH = 3 + PATCH = 4 PRE = nil VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join('.').freeze