Skip to content

Commit 1a0f073

Browse files
committed
Version 5.5.0
1 parent 0a040b6 commit 1a0f073

File tree

6 files changed

+468
-463
lines changed

6 files changed

+468
-463
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.5.0-dev",
4+
"version": "5.5.0",
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.5.0-dev
3+
2019.10.15 - version 5.5.0
44
* Feature - Add a plugin helper method to retrieve a template part while consistently passing the default template path to `wc_get_template()`
55
* Misc - Deprecate backwards compatibility methods for unsupported WooCommerce and PHP versions
66
* Misc - Replace `SV_WC_Helper::get_post()` and `SV_WC_Helper::get_request()` with `SV_WC_Helper::get_posted_value()` and `SV_WC_Helper::get_requested_value()`

woocommerce/class-sv-wc-helper.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,7 +567,7 @@ public static function get_post( $key ) {
567567
*
568568
* If the expected data is a string also trims it.
569569
*
570-
* @since 5.5.0-dev
570+
* @since 5.5.0
571571
*
572572
* @param string $key posted data key
573573
* @param int|float|array|bool|null|string $default default data type to return (default empty string)
@@ -607,7 +607,7 @@ public static function get_request( $key ) {
607607
*
608608
* If the expected data is a string also trims it.
609609
*
610-
* @since 5.5.0-dev
610+
* @since 5.5.0
611611
*
612612
* @param string $key posted data key
613613
* @param int|float|array|bool|null|string $default default data type to return (default empty string)

woocommerce/class-sv-wc-plugin-compatibility.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@ public static function get_wc_version() {
187187
/**
188188
* Determines if the installed WooCommerce version matches a specific version.
189189
*
190-
* @since 5.5.0-dev
190+
* @since 5.5.0
191191
*
192192
* @param string $version semver
193193
* @return bool
@@ -403,7 +403,7 @@ public static function is_wc_subscriptions_version_gte_2_0() {
403403
/**
404404
* Determines if the installed version of WooCommerce Subscriptions matches or exceeds a given version.
405405
*
406-
* @since 5.5.0-dev
406+
* @since 5.5.0
407407
*
408408
* @param string $version version number to compare
409409
* @return bool
@@ -418,7 +418,7 @@ public static function is_wc_subscriptions_version_gte( $version ) {
418418
/**
419419
* Determines if the installed version of WooCommerce Subscriptions exceeds a given version.
420420
*
421-
* @since 5.5.0-dev
421+
* @since 5.5.0
422422
*
423423
* @param string $version version number to compare
424424
* @return bool
@@ -434,7 +434,7 @@ public static function is_wc_subscriptions_version_gt( $version ) {
434434
/**
435435
* Determines if the installed version of WooCommerce Subscriptions is lower than a given version.
436436
*
437-
* @since 5.5.0-dev
437+
* @since 5.5.0
438438
*
439439
* @param string $version version number to compare
440440
* @return bool
@@ -463,7 +463,7 @@ protected static function get_wc_subscriptions_version() {
463463
/**
464464
* Determines if the installed WooCommerce Subscriptions version matches a specific version.
465465
*
466-
* @since 5.5.0-dev
466+
* @since 5.5.0
467467
*
468468
* @param string $version semver
469469
* @return bool

woocommerce/class-sv-wc-plugin.php

Lines changed: 4 additions & 4 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.5.0-dev
40+
* @version 5.5.0
4141
*/
4242
abstract class SV_WC_Plugin {
4343

4444

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

4848
/** @var object single instance of plugin */
4949
protected static $instance;
@@ -1140,7 +1140,7 @@ public function get_framework_assets_url() {
11401140
/**
11411141
* Gets the plugin default template path, without a trailing slash.
11421142
*
1143-
* @since 5.5.0-dev
1143+
* @since 5.5.0
11441144
*
11451145
* @return string
11461146
*/
@@ -1159,7 +1159,7 @@ public function get_template_path() {
11591159
*
11601160
* @see \wc_get_template() except we define automatically the default path
11611161
*
1162-
* @since 5.5.0-dev
1162+
* @since 5.5.0
11631163
*
11641164
* @param string $template template name/part
11651165
* @param array $args associative array of optional template arguments

0 commit comments

Comments
 (0)