From a3b650a12e558bd8c3d241ada416784864f7ec74 Mon Sep 17 00:00:00 2001 From: Stephen Celis Date: Tue, 29 Nov 2011 17:14:27 -0800 Subject: [PATCH] 2.0.9: Plan#add_ons#find support. Assorted bugfixes. --- Gemfile.lock | 2 +- README.markdown | 4 ++-- lib/recurly/version.rb | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Gemfile.lock b/Gemfile.lock index eeb5cba96..522b082f3 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - recurly (2.0.8) + recurly (2.0.9) GEM remote: http://rubygems.org/ diff --git a/README.markdown b/README.markdown index 0253f0069..5411ba699 100644 --- a/README.markdown +++ b/README.markdown @@ -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.0.8' +gem 'recurly', '~> 2.0.9' ``` Recurly will automatically use [Nokogiri](http://nokogiri.org/) (for a nice @@ -62,7 +62,7 @@ Instructions and examples are available on [Recurly's documentation site](http://docs.recurly.com/api/basics). Recurly's gem API is available -[here](http://rubydoc.info/gems/recurly/2.0.8/frames). +[here](http://rubydoc.info/gems/recurly/2.0.9/frames). ## Contributing diff --git a/lib/recurly/version.rb b/lib/recurly/version.rb index afcb26cdf..4346007eb 100644 --- a/lib/recurly/version.rb +++ b/lib/recurly/version.rb @@ -2,7 +2,7 @@ module Recurly module Version MAJOR = 2 MINOR = 0 - PATCH = 8 + PATCH = 9 PRE = nil VERSION = [MAJOR, MINOR, PATCH, PRE].compact.join('.').freeze