Skip to content

Commit b25cb14

Browse files
committed
Version 5.4.2
1 parent 597d5cd commit b25cb14

7 files changed

+10
-10
lines changed

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "skyverge/wc-plugin-framework",
33
"description": "The official SkyVerge WooCommerce plugin framework",
4-
"version": "5.4.2-dev",
4+
"version": "5.4.2",
55
"require-dev": {
66
"lucatume/wp-browser": "^2.1"
77
}

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-
2019.nn.nn - version 5.4.2-dev.1
3+
2019.08.27 - version 5.4.2
44
* Tweak - Add a standard set of subscription details to orders payment data set by a gateway
55
* Tweak - Add replacement helper methods to get the current screen in WordPress and check the screen ID
66
* Misc - Change SV_WC_Payment_Gateway::is_configured() from protected to public

woocommerce/class-sv-wc-helper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -961,7 +961,7 @@ public static function f_x( $text, $context ) {
961961
*
962962
* @see get_current_screen() replacement which is always available, unlike the WordPress core function
963963
*
964-
* @since 5.4.2-dev.1
964+
* @since 5.4.2
965965
*
966966
* @return \WP_Screen|null
967967
*/
@@ -978,7 +978,7 @@ public static function get_current_screen() {
978978
* This helps avoiding using the get_current_screen() function which is not always available,
979979
* or setting the substitute global $current_screen every time a check needs to be performed.
980980
*
981-
* @since 5.4.2-dev.1
981+
* @since 5.4.2
982982
*
983983
* @param string $id id (or property) to compare
984984
* @param string $prop optional property to compare, defaults to screen id

woocommerce/class-sv-wc-plugin.php

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

4343

4444
/** Plugin Framework Version */
45-
const VERSION = '5.4.2-dev.1';
45+
const VERSION = '5.4.2';
4646

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

woocommerce/payment-gateway/class-sv-wc-payment-gateway-plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -729,7 +729,7 @@ protected function add_debug_setting_notices() {
729729
/**
730730
* Adds notices about gateways not being configured.
731731
*
732-
* @since 5.4.2-dev.1
732+
* @since 5.4.2
733733
*/
734734
protected function add_gateway_not_configured_notices() {
735735

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4155,7 +4155,7 @@ public function get_checkout_order_received_order_id() {
41554155
/**
41564156
* Returns the error message for display if the gateway is not configured.
41574157
*
4158-
* @since 5.4.2-dev.1
4158+
* @since 5.4.2
41594159
*
41604160
* @return string
41614161
*/

woocommerce/payment-gateway/integrations/class-sv-wc-payment-gateway-integration-subscriptions.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ public function save_payment_meta( $order ) {
203203
* @see SV_WC_Payment_Gateway_Integration_Subscriptions::add_subscription_details_to_order()
204204
* @internal
205205
*
206-
* @since 5.4.2-dev.1
206+
* @since 5.4.2
207207
*
208208
* @param \WC_Order $order order object
209209
* @param SV_WC_Payment_Gateway $gateway payment gateway
@@ -272,7 +272,7 @@ public function add_subscriptions_details_to_order( $order, $gateway ) {
272272
* bool $is_last whether it is the last payment for an installment series
273273
*}
274274
*
275-
* @since 5.4.2-dev.1
275+
* @since 5.4.2
276276
*
277277
* @param \WC_Subscription $subscription subscription object
278278
* @param bool $renewal whether the subscription is a renewal

0 commit comments

Comments
 (0)