From 0356c2955e246999fa1b485098172ceaf21ebdea Mon Sep 17 00:00:00 2001 From: James MacAulay Date: Fri, 9 Jul 2010 08:41:21 -0400 Subject: [PATCH] Gem v1.7.0 --- CHANGELOG | 2 ++ activemerchant.gemspec | 4 ++-- lib/active_merchant/version.rb | 2 +- 3 files changed, 5 insertions(+), 3 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 97a54026577..bf3c8f2c25a 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,5 +1,7 @@ = ActiveMerchant CHANGELOG +== Version 1.7.0 (July 9, 2010) + * Add support for new Braintree Blue Gateway (using the braintree gem) [Braintree] == Version 1.6.0 (July 6, 2010) diff --git a/activemerchant.gemspec b/activemerchant.gemspec index 55fc56c1627..1eeed8171bc 100644 --- a/activemerchant.gemspec +++ b/activemerchant.gemspec @@ -1,7 +1,7 @@ Gem::Specification.new do |s| s.platform = Gem::Platform::RUBY s.name = 'activemerchant' - s.version = '1.6.0' + s.version = '1.7.0' s.summary = 'Framework and tools for dealing with credit card transactions.' s.description = 'Active Merchant is a simple payment abstraction library used in and sponsored by Shopify. It is written by Tobias Luetke, Cody Fauser, and contributors. The aim of the project is to feel natural to Ruby users and to abstract as many parts as possible away from the user to offer a consistent interface across all supported gateways.' @@ -15,7 +15,7 @@ Gem::Specification.new do |s| s.has_rdoc = true - s.add_dependency('activesupport', '>= 2.3.2') + s.add_dependency('activesupport', '~> 2.3.2') s.add_dependency('builder', '>= 2.0.0') s.add_dependency('braintree', '>= 2.0.0') diff --git a/lib/active_merchant/version.rb b/lib/active_merchant/version.rb index b8ae3c50601..567d6ec7fc9 100644 --- a/lib/active_merchant/version.rb +++ b/lib/active_merchant/version.rb @@ -1,3 +1,3 @@ module ActiveMerchant - VERSION = "1.6.0" unless defined?(::ActiveMerchant::VERSION) + VERSION = "1.7.0" end