Skip to content

Commit

Permalink
Patch version bump. Updated changelog.
Browse files Browse the repository at this point in the history
  • Loading branch information
pderksen committed Mar 13, 2015
1 parent 7fb1af5 commit ca30598
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions stripe/README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,10 @@ There are three ways to install this plugin.

== Changelog ==

= 1.3.0.1 - March 13, 2015 =

* Corrected the Stripe PHP class check to include new v2.0.0+ namepace. Should fix issues when running other Stripe-related plugins that utilize a version of the Stripe PHP library less than v2.0.0.

= 1.3.0 - March 12, 2015 =

* Added the ability to accept Bitcoin payments.
Expand Down
4 changes: 2 additions & 2 deletions stripe/class-stripe-checkout.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ class Stripe_Checkout {
*
* @var string
*/
protected $version = '1.3.0';
protected $version = '1.3.0.1';

/**
* Unique identifier for your plugin.
Expand Down Expand Up @@ -344,7 +344,7 @@ public function includes() {
// TODO Check for curl -- function_exists( 'curl_version' )
// TODO Check for PHP 5.3.3 (or whatever stripe-php currenly requires).
/*
if ( ! class_exists( 'Stripe' ) ) {
if ( ! class_exists( 'Stripe\Stripe' ) ) {
require_once( SC_PATH . 'libraries/stripe-php/init.php' );
}
*/
Expand Down
2 changes: 1 addition & 1 deletion stripe/stripe-checkout.php
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* Plugin Name: Simple Stripe Checkout
* Plugin URI: http://wpstripe.net
* Description: Add a Stripe Checkout form overlay to your site in minutes using shortcodes.
* Version: 1.3.0
* Version: 1.3.0.1
* Author: Phil Derksen
* Author URI: http://philderksen.com
* License: GPL-2.0+
Expand Down

0 comments on commit ca30598

Please sign in to comment.