Skip to content

Commit 1985625

Browse files
committed
v1.2.1
1 parent f059b23 commit 1985625

File tree

4 files changed

+12
-6
lines changed

4 files changed

+12
-6
lines changed

composer.json

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"require-dev": {
1313
"automattic/vipwpcs": "2.3.3",
1414
"dealerdirect/phpcodesniffer-composer-installer": "v0.7.2",
15-
"friendsofphp/php-cs-fixer": "v3.17.0",
15+
"friendsofphp/php-cs-fixer": "v3.3.0",
1616
"phpcompatibility/phpcompatibility-wp": "2.1.4",
1717
"sirbrillig/phpcs-variable-analysis": "v2.11.16",
1818
"squizlabs/php_codesniffer": "3.7.2",
@@ -23,12 +23,15 @@
2323
},
2424
"require": {
2525
"php": ">=7.2",
26-
"firebase/php-jwt": "v6.5.0",
26+
"firebase/php-jwt": "v6.4.0",
2727
"ramsey/uuid": "^4.2.3",
2828
"salesforce/handlebars-php": "^3.0.1",
2929
"vlucas/phpdotenv": "^v5.5.0"
3030
},
3131
"config": {
32+
"platform": {
33+
"php": "7.2"
34+
},
3235
"platform-check": false,
3336
"process-timeout": 0,
3437
"optimize-autoloader": true,

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@wcpos/woocommerce-pos",
3-
"version": "1.2.0",
3+
"version": "1.2.1",
44
"description": "A simple front-end for taking WooCommerce orders at the Point of Sale.",
55
"main": "index.js",
66
"workspaces": {

readme.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: kilbot
33
Tags: cart, e-commerce, ecommerce, inventory, point-of-sale, pos, sales, sell, shop, shopify, store, vend, woocommerce, wordpress-ecommerce
44
Requires at least: 5.6 & WooCommerce 5.3
55
Tested up to: 6.2
6-
Stable tag: 1.2.0
6+
Stable tag: 1.2.1
77
License: GPL-3.0
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -63,6 +63,9 @@ There is more information on our website at [https://wcpos.com](https://wcpos.co
6363

6464
== Changelog ==
6565

66+
= 1.2.1 - 2023/06/12 =
67+
* Fix: Critical error introduced with PHP 7.2 compatibility
68+
6669
= 1.2.0 - 2023/06/12 =
6770
* Refactor: data replication to improve performance
6871
* Refactor: product search, search by sku and barcode for products now works

woocommerce-pos.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* Plugin Name: WooCommerce POS
44
* Plugin URI: https://wordpress.org/plugins/woocommerce-pos/
55
* Description: A simple front-end for taking WooCommerce orders at the Point of Sale. Requires <a href="http://wordpress.org/plugins/woocommerce/">WooCommerce</a>.
6-
* Version: 1.2.0
6+
* Version: 1.2.1
77
* Author: kilbot
88
* Author URI: http://wcpos.com
99
* Text Domain: woocommerce-pos
@@ -23,7 +23,7 @@
2323
use Dotenv\Dotenv;
2424

2525
// Define plugin constants.
26-
const VERSION = '1.2.0';
26+
const VERSION = '1.2.1';
2727
const PLUGIN_NAME = 'woocommerce-pos';
2828
const SHORT_NAME = 'wcpos';
2929
\define( __NAMESPACE__ . '\PLUGIN_FILE', plugin_basename( __FILE__ ) ); // 'woocommerce-pos/woocommerce-pos.php'

0 commit comments

Comments
 (0)