Skip to content

Commit c983d61

Browse files
authored
Merge pull request #434 from moderntribe/release/5.0.5
packaged version 5.0.5
2 parents a22ee23 + 9d8e6c3 commit c983d61

18 files changed

+2798
-1263
lines changed

CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelog
22

3+
## [5.0.5]
4+
5+
### Changed
6+
- Update plugin readme `tested up` version
7+
38
## [5.0.4]
49

510
### Fixed
@@ -1899,6 +1904,7 @@
18991904
in fact, reset postdata, so far as Gutenberg 3.2.0 is concerned.
19001905

19011906

1907+
[5.0.5]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/5.0.4...5.0.5
19021908
[5.0.4]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/5.0.3...5.0.4
19031909
[5.0.3]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/5.0.2...5.0.3
19041910
[5.0.2]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/5.0.1...5.0.2

bigcommerce.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
Plugin Name: BigCommerce for WordPress
44
Description: Scale your ecommerce business with WordPress on the front-end and BigCommerce on the back end. Free up server resources from things like catalog management, processing payments, and managing fulfillment logistics.
55
Author: BigCommerce
6-
Version: 5.0.4
6+
Version: 5.0.5
77
Author URI: https://www.bigcommerce.com/wordpress
88
Requires PHP: 7.4.0
99
Text Domain: bigcommerce

build-timestamp.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?php
2-
define('BIGCOMMERCE_ASSETS_BUILD_TIMESTAMP', '4.43.08.18.2023');
2+
define('BIGCOMMERCE_ASSETS_BUILD_TIMESTAMP', '6.45.10.05.2023');

readme.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: bigcommerce, moderntribe, jbrinley, becomevocal, vincentlistrani, jbirthler, kdiplas, iliabaum, joshliston, nickioa, fernando22, mr_speer, geoffgraham, yuenvision, xwp, karenpwhite, mlkilderkin
33
Tags: ecommerce, online store, sell online, storefront, retail, online shop, bigcommerce, big commerce, e-commerce, physical products, buy buttons, commerce, shopping cart, checkout, cart, shop, headless commerce, shipping, payments, fulfillment
44
Requires at least: 5.2
5-
Tested up to: 6.0.3
6-
Stable tag: 5.0.4
5+
Tested up to: 6.3.1
6+
Stable tag: 5.0.5
77
Requires PHP: 7.4.0
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html

src/BigCommerce/Customizer/Sections/Colors.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -194,4 +194,4 @@ private function banners( \WP_Customize_Manager $wp_customize ) {
194194
] ) );
195195
}
196196

197-
}
197+
}

src/BigCommerce/Plugin.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace BigCommerce;
55

66
class Plugin {
7-
const VERSION = '5.0.4';
7+
const VERSION = '5.0.5';
88

99
protected static $_instance;
1010

vendor/autoload.php

+1-19
Original file line numberDiff line numberDiff line change
@@ -2,24 +2,6 @@
22

33
// autoload.php @generated by Composer
44

5-
if (PHP_VERSION_ID < 50600) {
6-
if (!headers_sent()) {
7-
header('HTTP/1.1 500 Internal Server Error');
8-
}
9-
$err = 'Composer 2.3.0 dropped support for autoloading on PHP <5.6 and you are running '.PHP_VERSION.', please upgrade PHP or use Composer 2.2 LTS via "composer self-update --2.2". Aborting.'.PHP_EOL;
10-
if (!ini_get('display_errors')) {
11-
if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') {
12-
fwrite(STDERR, $err);
13-
} elseif (!headers_sent()) {
14-
echo $err;
15-
}
16-
}
17-
trigger_error(
18-
$err,
19-
E_USER_ERROR
20-
);
21-
}
22-
235
require_once __DIR__ . '/composer/autoload_real.php';
246

25-
return ComposerAutoloaderInit4378b8a71de4d1a779feaef45cf15eaf::getLoader();
7+
return ComposerAutoloaderInite3b7bc6dcf7f80d1326d7975fb9f5e3f::getLoader();

0 commit comments

Comments
 (0)