Skip to content
This repository has been archived by the owner on Jun 23, 2022. It is now read-only.

Commit

Permalink
Version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
stezu committed Jan 8, 2015
1 parent 04a1ed2 commit 5a4bd1e
Show file tree
Hide file tree
Showing 10 changed files with 16 additions and 10 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Stripe for WooCommerce
Plugin version: 1.34
Plugin version: 1.35

Requires at least:
- WordPress 3.8.0
Expand Down
6 changes: 6 additions & 0 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ Not yet. I've been meaning to go through the code and develop some solid documen

== Changelog ==

= 1.35 =
* Fix: WooCommerce Bookings plugin now works again
* Fix: Partial captures now allowed, don't go over the authorized amount though
* Fix: Stripe Fee wasn't showing up on captured charges
* Tweak: 'Capture' field removed from custom fields

= 1.34 =
* Feature: Stripe fee is added to order details
* Tweak: Payment gateway disabled if cart is less than 50 cents
Expand Down
2 changes: 1 addition & 1 deletion classes/class-s4wc_api.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Functions for interfacing with Stripe's API
*
* @class S4WC_API
* @version 1.34
* @version 1.35
* @author Stephen Zuniga
*/

Expand Down
2 changes: 1 addition & 1 deletion classes/class-s4wc_customer.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Customer related modifications and templates
*
* @class S4WC_Customer
* @version 1.34
* @version 1.35
* @author Stephen Zuniga
*/

Expand Down
2 changes: 1 addition & 1 deletion classes/class-s4wc_db.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Functions for interfacing with the database
*
* @class S4WC_DB
* @version 1.34
* @version 1.35
* @author Stephen Zuniga
*/

Expand Down
4 changes: 2 additions & 2 deletions classes/class-s4wc_gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @class S4WC_Gateway
* @extends WC_Payment_Gateway
* @version 1.34
* @version 1.35
* @package WooCommerce/Classes/Payment
* @author Stephen Zuniga
*/
Expand Down Expand Up @@ -301,7 +301,7 @@ public function load_scripts() {
wp_enqueue_script( 'stripe', 'https://js.stripe.com/v2/', false, '2.0', true );

// Plugin js
wp_enqueue_script( 's4wc_js', plugins_url( 'assets/js/s4wc.min.js', dirname( __FILE__ ) ), array( 'stripe', 'wc-credit-card-form' ), '1.34', true );
wp_enqueue_script( 's4wc_js', plugins_url( 'assets/js/s4wc.min.js', dirname( __FILE__ ) ), array( 'stripe', 'wc-credit-card-form' ), '1.35', true );

// Add data that s4wc.js needs
$s4wc_info = array(
Expand Down
2 changes: 1 addition & 1 deletion classes/class-s4wc_subscriptions_gateway.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
* @class S4WC_Subscriptions_Gateway
* @extends S4WC_Gateway
* @version 1.34
* @version 1.35
* @package WooCommerce/Classes/Payment
* @author Stephen Zuniga
*/
Expand Down
2 changes: 1 addition & 1 deletion stripe-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Stripe for WooCommerce
* Plugin URI: https://wordpress.org/plugins/stripe-for-woocommerce
* Description: Use Stripe for collecting credit card payments on WooCommerce.
* Version: 1.34
* Version: 1.35
* Author: Stephen Zuniga
* Author URI: http://stephenzuniga.com
*
Expand Down
2 changes: 1 addition & 1 deletion templates/payment-fields.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Override this template by copying it to yourtheme/woocommerce/s4wc/payment-fields.php
*
* @author Stephen Zuniga
* @version 1.34
* @version 1.35
*/

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
Expand Down
2 changes: 1 addition & 1 deletion templates/saved-cards.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Override this template by copying it to yourtheme/woocommerce/s4wc/saved-cards.php
*
* @author Stephen Zuniga
* @version 1.34
* @version 1.35
*/

if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
Expand Down

0 comments on commit 5a4bd1e

Please sign in to comment.