From 29c36224bddd9f3e3c4c9681b1de06e7e4195d48 Mon Sep 17 00:00:00 2001 From: Fulvio Notarstefano Date: Tue, 5 Sep 2023 11:53:30 +0800 Subject: [PATCH] Sequential Order Numbers for WooCommerce: 1.10.1 Versioning --- .../languages/woocommerce-sequential-order-numbers.pot | 10 +++++----- readme.txt | 6 +++--- woocommerce-sequential-order-numbers.php | 6 +++--- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/i18n/languages/woocommerce-sequential-order-numbers.pot b/i18n/languages/woocommerce-sequential-order-numbers.pot index 3ba6e89..a3b2699 100644 --- a/i18n/languages/woocommerce-sequential-order-numbers.pot +++ b/i18n/languages/woocommerce-sequential-order-numbers.pot @@ -2,10 +2,10 @@ # This file is distributed under the GNU General Public License v3.0. msgid "" msgstr "" -"Project-Id-Version: Sequential Order Numbers for WooCommerce 1.10.0\n" +"Project-Id-Version: Sequential Order Numbers for WooCommerce 1.10.1\n" "Report-Msgid-Bugs-To: " "https://woocommerce.com/my-account/marketplace-ticket-form/\n" -"POT-Creation-Date: 2023-08-02 04:14:28+00:00\n" +"POT-Creation-Date: 2023-09-05 03:53:24+00:00\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -23,7 +23,7 @@ msgstr "" msgid "You cannot unserialize instances of %s." msgstr "" -#: woocommerce-sequential-order-numbers.php:675 +#: woocommerce-sequential-order-numbers.php:678 #. translators: Placeholders: %1$s - plugin name; %2$s - WooCommerce version; #. %3$s, %5$s - tags; %4$s - tag msgid "" @@ -31,13 +31,13 @@ msgid "" "%3$supdate WooCommerce%4$s or run the %5$sWooCommerce database upgrade%4$s." msgstr "" -#: woocommerce-sequential-order-numbers.php:725 +#: woocommerce-sequential-order-numbers.php:728 msgid "" "Error activating and installing Sequential Order Numbers for " "WooCommerce: %s" msgstr "" -#: woocommerce-sequential-order-numbers.php:727 +#: woocommerce-sequential-order-numbers.php:730 msgid "« Go Back" msgstr "" diff --git a/readme.txt b/readme.txt index e7f96ac..67040c9 100644 --- a/readme.txt +++ b/readme.txt @@ -2,9 +2,9 @@ Contributors: SkyVerge, maxrice, tamarazuk, chasewiseman, nekojira, beka.rice Tags: woocommerce, order number, sequential order number, woocommerce orders Requires at least: 5.6 -Tested up to: 6.2.2 +Tested up to: 6.3.1 Requires PHP: 7.4 -Stable tag: 1.10.1-dev.1 +Stable tag: 1.10.1 This plugin extends WooCommerce by setting sequential order numbers for new orders. @@ -102,7 +102,7 @@ $order_number = $order->get_order_number(); == Changelog == -- 2023.nn.nn - version 1.10.1-dev.1 = +- 2023.09.05 - version 1.10.1 = * Fix - Call save order method only in HPOS installs to avoid setting the same order number meta twice in CPT installations - 2023.08.02 - version 1.10.0 = diff --git a/woocommerce-sequential-order-numbers.php b/woocommerce-sequential-order-numbers.php index e340975..093a470 100644 --- a/woocommerce-sequential-order-numbers.php +++ b/woocommerce-sequential-order-numbers.php @@ -5,7 +5,7 @@ * Description: Provides sequential order numbers for WooCommerce orders * Author: SkyVerge * Author URI: http://www.skyverge.com - * Version: 1.10.1-dev.1 + * Version: 1.10.1 * Text Domain: woocommerce-sequential-order-numbers * Domain Path: /i18n/languages/ * @@ -19,7 +19,7 @@ * @license http://www.gnu.org/licenses/gpl-3.0.html GNU General Public License v3.0 * * WC requires at least: 3.9.4 - * WC tested up to: 7.9.0 + * WC tested up to: 8.0.3 */ defined( 'ABSPATH' ) or exit; @@ -33,7 +33,7 @@ class WC_Seq_Order_Number { /** version number */ - const VERSION = '1.10.1-dev.1'; + const VERSION = '1.10.1'; /** minimum required wc version */ const MINIMUM_WC_VERSION = '3.9.4';