diff --git a/CHANGELOG.md b/CHANGELOG.md index 5746a0e4..81b62603 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Changelog +## [5.1.1] + +### Changed +- Updated JS dependencies +- Added CLI commands to the README +- Update plugin readme `tested up` version + +### Fixed +- Fix wc_get_page_id return type + ## [5.1.0] ### Changed @@ -1924,6 +1934,7 @@ in fact, reset postdata, so far as Gutenberg 3.2.0 is concerned. +[5.1.1]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/5.1.0...5.1.1 [5.1.0]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/5.0.8...5.1.0 [5.0.8]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/5.0.7...5.0.8 [5.0.7]: https://github.com/bigcommerce/bigcommerce-for-wordpress/compare/5.0.6...5.0.7 diff --git a/bigcommerce.php b/bigcommerce.php index 916fda41..9b7c9f2e 100644 --- a/bigcommerce.php +++ b/bigcommerce.php @@ -3,7 +3,7 @@ Plugin Name: BigCommerce for WordPress 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. Author: BigCommerce -Version: 5.1.0 +Version: 5.1.1 Author URI: https://www.bigcommerce.com/wordpress Requires PHP: 7.4.0 Text Domain: bigcommerce diff --git a/readme.txt b/readme.txt index 1f1fd2ea..c0fad372 100644 --- a/readme.txt +++ b/readme.txt @@ -1,9 +1,9 @@ === BigCommerce For WordPress === -Contributors: bigcommerce, moderntribe, jbrinley, becomevocal, vincentlistrani, jbirthler, kdiplas, iliabaum, joshliston, nickioa, fernando22, mr_speer, geoffgraham, yuenvision, xwp, karenpwhite, mlkilderkin, ericbher, karmatosed, lukecarbis +Contributors: bigcommerce, moderntribe, jbrinley, becomevocal, vincentlistrani, jbirthler, kdiplas, iliabaum, joshliston, nickioa, fernando22, mr_speer, geoffgraham, yuenvision, xwp, karenpwhite, mlkilderkin, ericbher, karmatosed, lukecarbis, tfanelli, jazzsequence, ipokrovkiy, johnolek, chanceaclark 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 Requires at least: 5.2 Tested up to: 6.7 -Stable tag: 5.1.0 +Stable tag: 5.1.1 Requires PHP: 7.4.0 License: GPLv2 or later License URI: https://www.gnu.org/licenses/gpl-2.0.html diff --git a/src/BigCommerce/Plugin.php b/src/BigCommerce/Plugin.php index 0ff4d8f3..1dff2a75 100644 --- a/src/BigCommerce/Plugin.php +++ b/src/BigCommerce/Plugin.php @@ -4,7 +4,7 @@ namespace BigCommerce; class Plugin { - const VERSION = '5.1.0'; + const VERSION = '5.1.1'; protected static $_instance;