From e6e981d2d791e2db00cbe3074f19559b15eafe6d Mon Sep 17 00:00:00 2001 From: John Duff Date: Fri, 23 Sep 2011 14:42:34 -0400 Subject: [PATCH] Packaging for release 1.18.0 --- CHANGELOG | 10 +++++++++- CONTRIBUTORS | 6 +++++- README.md | 1 + activemerchant.gemspec | 2 +- lib/active_merchant/version.rb | 2 +- 5 files changed, 17 insertions(+), 4 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index dc42945de08..c19201a25b7 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,6 +1,14 @@ = ActiveMerchant CHANGELOG -* NoChex: Update the URL that payment requests are posted to [caseywhalen] +== Version 1.18.0 (September 23, 2011) + +* NoChex: Update the URL that payment requests are posted to [caseywhalen/jduff] +* QBMS: fixed test mode check [Soleone] +* Realex: encode avs info with shipping address [Soleone] +* Add Dwolla offsite gateway [armsteadj1/jduff] +* Eway: pass email, customer, description and options to store [moklett/tobi] +* New dependency: active_utils gem [odorcicd] +* Optimal Payments: fix test mode check [jduff] == Version 1.17.0 (August 23, 2011) diff --git a/CONTRIBUTORS b/CONTRIBUTORS index be2c60fbd15..78568525718 100644 --- a/CONTRIBUTORS +++ b/CONTRIBUTORS @@ -248,6 +248,10 @@ Optimal Payments (August, 2011) * Jamie Macey (jamie) -CardSave (August 2011,) +CardSave (August, 2011) * Tom Crinson (MrJaba) + +Dwolla (September, 2011) + +* James Armstead (armsteadj1) diff --git a/README.md b/README.md index 5bb9aa0d658..7ac63309300 100644 --- a/README.md +++ b/README.md @@ -160,6 +160,7 @@ The [ActiveMerchant Wiki](http://github.com/Shopify/active_merchant/wikis) conta * [Chronopay](http://www.chronopay.com) * [Direct-eBanking / sofortueberweisung.de by Payment-Networks AG](https://www.payment-network.com/deb_com_en/merchantarea/home) - DE, AT, CH, BE, UK, NL * [DirecPay](http://www.timesofmoney.com/direcpay/jsp/home.jsp) +* [Dwolla](https://www.dwolla.com/default.aspx) * [HiTRUST](http://www.hitrust.com.hk/) * [Moneybookers](http://www.moneybookers.com) * [Nochex](http://www.nochex.com) diff --git a/activemerchant.gemspec b/activemerchant.gemspec index c6872f7b72e..749cfabdf17 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.17.0' + s.version = '1.18.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.' diff --git a/lib/active_merchant/version.rb b/lib/active_merchant/version.rb index 07dc1ffacea..81b9d8f2305 100644 --- a/lib/active_merchant/version.rb +++ b/lib/active_merchant/version.rb @@ -1,3 +1,3 @@ module ActiveMerchant - VERSION = "1.17.0" + VERSION = "1.18.0" end