Skip to content

Commit ed8331b

Browse files
committed
Version 5.6.0
1 parent 241fa31 commit ed8331b

8 files changed

+30
-30
lines changed

woocommerce/admin/Notes_Helper.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
/**
2929
* Helper class for WooCommerce enhanced admin notes.
3030
*
31-
* @since 5.6.0-dev
31+
* @since 5.6.0
3232
*/
3333
class Notes_Helper {
3434

@@ -39,7 +39,7 @@ class Notes_Helper {
3939
/**
4040
* Determines if any notes with the given name exist.
4141
*
42-
* @since 5.6.0-dev
42+
* @since 5.6.0
4343
*
4444
* @param string $name note name
4545
* @return bool
@@ -80,7 +80,7 @@ public static function get_note_with_name( $name ) {
8080
/**
8181
* Gets all notes with the given name.
8282
*
83-
* @since 5.6.0-dev
83+
* @since 5.6.0
8484
*
8585
* @param string $name note name
8686
* @return int[]

woocommerce/changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*** SkyVerge WooCommerce Plugin Framework Changelog ***
22

3-
2020.nn.nn - version 5.6.0-dev
3+
2020.03.04 - version 5.6.0
44
* Feature - Add support for WooCommerce Admin enhanced notes
55
* Tweak - Refactor Apple Pay handler classes for greater flexibility
66
* Fix - Remove gateway payment field validation on initial page load

woocommerce/class-sv-wc-helper.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ public static function is_current_screen( $id, $prop = 'id' ) {
949949
/**
950950
* Determines if viewing an enhanced admin screen.
951951
*
952-
* @since 5.6.0-dev
952+
* @since 5.6.0
953953
*
954954
* @return bool
955955
*/

woocommerce/class-sv-wc-plugin.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@
3737
* plugin. This class handles all the "non-feature" support tasks such
3838
* as verifying dependencies are met, loading the text domain, etc.
3939
*
40-
* @version 5.6.0-dev
40+
* @version 5.6.0
4141
*/
4242
abstract class SV_WC_Plugin {
4343

4444

4545
/** Plugin Framework Version */
46-
const VERSION = '5.6.0-dev';
46+
const VERSION = '5.6.0';
4747

4848
/** @var object single instance of plugin */
4949
protected static $instance;

woocommerce/payment-gateway/apple-pay/class-sv-wc-payment-gateway-apple-pay-ajax.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public function __construct( SV_WC_Payment_Gateway_Apple_Pay $handler ) {
6161
/**
6262
* Adds the action & filter hooks.
6363
*
64-
* @since 5.6.0-dev
64+
* @since 5.6.0
6565
*/
6666
protected function add_hooks() {
6767

woocommerce/payment-gateway/apple-pay/class-sv-wc-payment-gateway-apple-pay-frontend.php

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ protected function get_js_handler_params() {
142142
/**
143143
* Enqueues an Apple Pay JS handler.
144144
*
145-
* @since 5.6.0-dev
145+
* @since 5.6.0
146146
*
147147
* @param array $args handler arguments
148148
* @param string $object_name JS object name
@@ -176,7 +176,7 @@ protected function enqueue_js_handler( array $args, $object_name = '', $handler_
176176
*
177177
* Concrete implementations can override this with their own handler.
178178
*
179-
* @since 5.6.0-dev
179+
* @since 5.6.0
180180
*
181181
* @return string
182182
*/
@@ -295,7 +295,7 @@ public function init_product() {
295295
/**
296296
* Gets the args passed to the product JS handler.
297297
*
298-
* @since 5.6.0-dev
298+
* @since 5.6.0
299299
*
300300
* @param \WC_Product $product product object
301301
* @return array
@@ -320,7 +320,7 @@ protected function get_product_js_handler_args( \WC_Product $product ) {
320320
* Filters the Apple Pay product handler args.
321321
*
322322
* @since 4.7.0
323-
* @deprecated 5.6.0-dev
323+
* @deprecated 5.6.0
324324
*
325325
* @param array $args JS handler arguments
326326
*/
@@ -329,7 +329,7 @@ protected function get_product_js_handler_args( \WC_Product $product ) {
329329
/**
330330
* Filters the gateway Apple Pay cart handler args.
331331
*
332-
* @since 5.6.0-dev
332+
* @since 5.6.0
333333
*
334334
* @param array $args JS handler arguments
335335
* @param \WC_Product $product product object
@@ -363,7 +363,7 @@ public function init_cart() {
363363
/**
364364
* Gets the args passed to the cart JS handler.
365365
*
366-
* @since 5.6.0-dev
366+
* @since 5.6.0
367367
*
368368
* @param \WC_Cart $cart cart object
369369
* @return array
@@ -387,7 +387,7 @@ protected function get_cart_js_handler_args( \WC_Cart $cart ) {
387387
* Filters the Apple Pay cart handler args.
388388
*
389389
* @since 4.7.0
390-
* @deprecated 5.6.0-dev
390+
* @deprecated 5.6.0
391391
*
392392
* @param array $args JS handler arguments
393393
*/
@@ -396,7 +396,7 @@ protected function get_cart_js_handler_args( \WC_Cart $cart ) {
396396
/**
397397
* Filters the gateway Apple Pay cart handler args.
398398
*
399-
* @since 5.6.0-dev
399+
* @since 5.6.0
400400
*
401401
* @param array $args JS handler arguments
402402
* @param \WC_Cart $cart cart object
@@ -429,7 +429,7 @@ public function init_checkout() {
429429
/**
430430
* Gets the args passed to the checkout JS handler.
431431
*
432-
* @since 5.6.0-dev
432+
* @since 5.6.0
433433
*
434434
* @return array
435435
*/
@@ -439,7 +439,7 @@ protected function get_checkout_js_handler_args() {
439439
* Filters the Apple Pay checkout handler args.
440440
*
441441
* @since 4.7.0
442-
* @deprecated 5.6.0-dev
442+
* @deprecated 5.6.0
443443
*
444444
* @param array $args JS handler arguments
445445
*/
@@ -448,7 +448,7 @@ protected function get_checkout_js_handler_args() {
448448
/**
449449
* Filters the gateway Apple Pay checkout handler args.
450450
*
451-
* @since 5.6.0-dev
451+
* @since 5.6.0
452452
*
453453
* @param array $args JS handler arguments
454454
*/

woocommerce/payment-gateway/apple-pay/class-sv-wc-payment-gateway-apple-pay.php

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ protected function init() {
9191
/**
9292
* Initializes the admin handler.
9393
*
94-
* @since 5.6.0-dev
94+
* @since 5.6.0
9595
*/
9696
protected function init_admin() {
9797

@@ -102,7 +102,7 @@ protected function init_admin() {
102102
/**
103103
* Initializes the AJAX handler.
104104
*
105-
* @since 5.6.0-dev
105+
* @since 5.6.0
106106
*/
107107
protected function init_ajax() {
108108

@@ -113,7 +113,7 @@ protected function init_ajax() {
113113
/**
114114
* Initializes the frontend handler.
115115
*
116-
* @since 5.6.0-dev
116+
* @since 5.6.0
117117
*/
118118
protected function init_frontend() {
119119

@@ -662,7 +662,7 @@ public function get_stored_payment_response() {
662662
/**
663663
* Builds a payment response object from an array of data.
664664
*
665-
* @since 5.6.0-dev
665+
* @since 5.6.0
666666
*
667667
* @param string $data response data, as a JSON string
668668
* @return SV_WC_Payment_Gateway_Apple_Pay_Payment_Response
@@ -908,7 +908,7 @@ public function is_test_mode() {
908908
/**
909909
* Determines if a merchant ID is required for configuration.
910910
*
911-
* @since 5.6.0-dev
911+
* @since 5.6.0
912912
*
913913
* @return bool
914914
*/
@@ -921,7 +921,7 @@ public function requires_merchant_id() {
921921
/**
922922
* Determines if a local Apple Pay certificate is required for configuration.
923923
*
924-
* @since 5.6.0-dev
924+
* @since 5.6.0
925925
*
926926
* @return bool
927927
*/

woocommerce/payment-gateway/assets/js/frontend/sv-wc-payment-gateway-apple-pay.coffee

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,15 +98,15 @@ jQuery( document ).ready ($) ->
9898

9999
# Initializes the product page.
100100
#
101-
# @since 5.6.0-dev
101+
# @since 5.6.0
102102
init_product_page: =>
103103

104104
@ui_element = $( 'form.cart' )
105105

106106

107107
# Initializes the cart page.
108108
#
109-
# @since 5.6.0-dev
109+
# @since 5.6.0
110110
init_cart_page: =>
111111

112112
@ui_element = $( 'form.woocommerce-cart-form' ).parents( 'div.woocommerce' )
@@ -119,7 +119,7 @@ jQuery( document ).ready ($) ->
119119

120120
# Initializes the checkout page.
121121
#
122-
# @since 5.6.0-dev
122+
# @since 5.6.0
123123
init_checkout_page: =>
124124

125125
@ui_element = $( 'form.woocommerce-checkout' )
@@ -133,7 +133,7 @@ jQuery( document ).ready ($) ->
133133

134134
# Gets a new Apple Pay session.
135135
#
136-
# @since 5.6.0-dev
136+
# @since 5.6.0
137137
#
138138
# @param [Object] payment_request payment request object
139139
# @return ApplePaySession
@@ -144,7 +144,7 @@ jQuery( document ).ready ($) ->
144144

145145
# Gets the Apple SDK version to use.
146146
#
147-
# @since 5.6.0-dev
147+
# @since 5.6.0
148148
# @return int
149149
get_sdk_version: ->
150150

0 commit comments

Comments
 (0)