Skip to content

Commit 482a34d

Browse files
committed
WooCommerce Sequential Order Numbers: 1.8.3 Versioning
1 parent 5356093 commit 482a34d

File tree

3 files changed

+18
-18
lines changed

3 files changed

+18
-18
lines changed

i18n/languages/woocommerce-sequential-order-numbers.pot

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,44 +1,44 @@
1-
# Copyright (C) 2017 SkyVerge
1+
# Copyright (C) 2018 SkyVerge
22
# This file is distributed under the GNU General Public License v3.0.
33
msgid ""
44
msgstr ""
5-
"Project-Id-Version: WooCommerce Sequential Order Numbers 1.8.2\n"
5+
"Project-Id-Version: WooCommerce Sequential Order Numbers 1.8.3\n"
66
"Report-Msgid-Bugs-To: "
7-
"https://github.com/skyverge/woocommerce-sequential-order-numbers/issues\n"
8-
"POT-Creation-Date: 2014-09-05 22:27:38+00:00\n"
7+
"https://woocommerce.com/my-account/marketplace-ticket-form/\n"
8+
"POT-Creation-Date: 2018-07-17 23:45:46+00:00\n"
99
"MIME-Version: 1.0\n"
1010
"Content-Type: text/plain; charset=utf-8\n"
1111
"Content-Transfer-Encoding: 8bit\n"
12-
"PO-Revision-Date: 2017-MO-DA HO:MI+ZONE\n"
12+
"PO-Revision-Date: 2018-MO-DA HO:MI+ZONE\n"
1313
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1414
"Language-Team: LANGUAGE <[email protected]>\n"
1515

16-
#: woocommerce-sequential-order-numbers.php:67
16+
#: woocommerce-sequential-order-numbers.php:70
1717
#. translators: Placeholders: %s - plugin name
1818
msgid "You cannot clone instances of %s."
1919
msgstr ""
2020

21-
#: woocommerce-sequential-order-numbers.php:79
21+
#: woocommerce-sequential-order-numbers.php:82
2222
#. translators: Placeholders: %s - plugin name
2323
msgid "You cannot unserialize instances of %s."
2424
msgstr ""
2525

26-
#: woocommerce-sequential-order-numbers.php:487
26+
#: woocommerce-sequential-order-numbers.php:527
2727
#. translators: Placeholders: %1$s - plugin name; %2$s - WooCommerce version;
2828
#. %3$s, %5$s - <a> tags; %4$s - </a> tag
2929
msgid ""
3030
"%1$s is inactive because it requires WooCommerce %2$s or newer. Please "
3131
"%3$supdate WooCommerce%4$s or run the %5$sWooCommerce database upgrade%4$s."
3232
msgstr ""
3333

34-
#: woocommerce-sequential-order-numbers.php:529
34+
#: woocommerce-sequential-order-numbers.php:569
3535
#. Translators: %s - error message(s)
3636
msgid ""
3737
"Error activating and installing <strong>WooCommerce Sequential Order "
3838
"Numbers</strong>: %s"
3939
msgstr ""
4040

41-
#: woocommerce-sequential-order-numbers.php:530
41+
#: woocommerce-sequential-order-numbers.php:570
4242
msgid "&laquo; Go Back"
4343
msgstr ""
4444

readme.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: SkyVerge, maxrice, tamarazuk, chasewiseman, nekojira, beka.rice
33
Tags: woocommerce, order number, sequential order number, woocommerce orders
44
Requires at least: 4.4
5-
Tested up to: 4.9.6
6-
Stable tag: 1.8.3-dev.1
5+
Tested up to: 4.9.7
6+
Stable tag: 1.8.3
77

88
This plugin extends WooCommerce by setting sequential order numbers for new orders.
99

@@ -101,7 +101,7 @@ $order_number = $order->get_order_number();
101101

102102
== Changelog ==
103103

104-
= 2018.nn.nn - version 1.8.3-dev.1 =
104+
= 2018.07.17 - version 1.8.3 =
105105
* Misc - Require WooCommerce 2.6.14+ and WordPress 4.4+
106106

107107
= 1.8.2 - 2017.08.22 =

woocommerce-sequential-order-numbers.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* Description: Provides sequential order numbers for WooCommerce orders
66
* Author: SkyVerge
77
* Author URI: http://www.skyverge.com
8-
* Version: 1.8.3-dev.1
8+
* Version: 1.8.3
99
* Text Domain: woocommerce-sequential-order-numbers
1010
* Domain Path: /i18n/languages/
1111
*
@@ -35,7 +35,7 @@ class WC_Seq_Order_Number {
3535

3636

3737
/** version number */
38-
const VERSION = '1.8.3-dev.1';
38+
const VERSION = '1.8.3';
3939

4040
/** minimum required wc version */
4141
const MINIMUM_WC_VERSION = '2.6.14';
@@ -355,21 +355,21 @@ public static function instance() {
355355
* Checks if WooCommerce is active
356356
*
357357
* @since 1.3
358-
* @deprecated 1.8.3-dev.1
358+
* @deprecated 1.8.3
359359
*
360360
* @return bool true if WooCommerce is active, false otherwise
361361
*/
362362
public static function is_woocommerce_active() {
363363

364-
_deprecated_function( 'WC_Seq_Order_Number::is_woocommerce_active', '1.8.3-dev.1', 'WC_Seq_Order_Number::is_plugin_active' );
364+
_deprecated_function( 'WC_Seq_Order_Number::is_woocommerce_active', '1.8.3', 'WC_Seq_Order_Number::is_plugin_active' );
365365
return self::is_plugin_active( 'woocommerce.php' );
366366
}
367367

368368

369369
/**
370370
* Helper function to determine whether a plugin is active.
371371
*
372-
* @since 1.8.3-dev.1
372+
* @since 1.8.3
373373
*
374374
* @param string $plugin_name plugin name, as the plugin-filename.php
375375
* @return boolean true if the named plugin is installed and active

0 commit comments

Comments
 (0)