Skip to content

Commit 04054f3

Browse files
committed
Resolve conflicts
2 parents 1ce5c48 + 4ad9ac6 commit 04054f3

12 files changed

Lines changed: 2513 additions & 2240 deletions

File tree

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [3.8.1]
4+
5+
### Changed
6+
7+
- Updated embedded checkout SDK to version 1.37.1 to better handle failures from the cart handover.
8+
39
## [3.8.0]
410

511
### Added
@@ -66,7 +72,7 @@
6672
from this plugin, add the following snipped to a theme or plugin:
6773
```
6874
add_action( 'plugins_loaded', function() {
69-
remove_action( 'wp_head', bigcommerce()->post_types->product_page_meta_description, 0 );
75+
remove_action( 'wp_head', bigcommerce()->post_types->product_page_meta_description, 0 );
7076
}, 100, 0 );
7177
```
7278
- Added support for custom image alt text. The alt text set in the BigCommerce admin will
@@ -942,6 +948,7 @@
942948

943949

944950
[Unreleased]: https://github.com/moderntribe/bigcommerce/compare/master...develop
951+
[3.8.1]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/3.8.0...3.8.1
945952
[3.8.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/3.7.0...3.8.0
946953
[3.7.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/3.6.0...3.7.0
947954
[3.6.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/3.5.0...3.6.0

assets/js/dist/scripts.js

Lines changed: 1910 additions & 1266 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/dist/scripts.min.js

Lines changed: 34 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/dist/vendor.js

Lines changed: 542 additions & 948 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/dist/vendor.min.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bigcommerce.php

Lines changed: 1 addition & 1 deletion
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: 3.8.0
6+
Version: 3.8.1
77
Author URI: https://www.bigcommerce.com/wordpress
88
Requires PHP: 5.6.24
99
Text Domain: bigcommerce

build-timestamp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
<?php
2-
define('BIGCOMMERCE_ASSETS_BUILD_TIMESTAMP', '5.31.10.01.2019');
2+
define('BIGCOMMERCE_ASSETS_BUILD_TIMESTAMP', '12.40.10.09.2019');

readme.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: bigcommerce, moderntribe, jbrinley, becomevocal, vincentlistrani,
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: 4.6
55
Tested up to: 5.2.2
6-
Stable tag: 3.8.0
6+
Stable tag: 3.8.1
77
Requires PHP: 5.6.24
88
License: GPLv2 or later
99
License URI: https://www.gnu.org/licenses/gpl-2.0.html

src/BigCommerce/Plugin.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
namespace BigCommerce;
55

66
class Plugin {
7-
const VERSION = '3.8.0';
7+
const VERSION = '3.8.1';
88

99
protected static $_instance;
1010

vendor/autoload.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
require_once __DIR__ . '/composer/autoload_real.php';
66

7-
return ComposerAutoloaderInit8c41424f3a8d09f7a91bc7e43542a9a7::getLoader();
7+
return ComposerAutoloaderInitfe71eae5c568f78e8137e0a51852fc18::getLoader();

0 commit comments

Comments
 (0)