From 9ec506290b1bb47a167ec7cbeef24a6136f779e1 Mon Sep 17 00:00:00 2001 From: Robert DeVore Date: Thu, 9 Sep 2021 18:16:38 -0400 Subject: [PATCH] :rocket: RELEASE: DDWC v3.2.1 --- CHANGELOG.md | 4 ++++ README.txt | 8 ++++++-- delivery-drivers-for-woocommerce.php | 6 +++--- includes/class-ddwc.php | 2 +- 4 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f9015b9..651898d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,9 @@ # Changelog +## 3.2.1 +* Added `ddwc_woocommerce_store_address` helper function in `admin/ddwc-functions.php` +* Updated text strings for localization for translations found in the `languages` folder + ## 3.2 * Added `ddwc_driver_dashboard_completed_orders_order_details_url` filter in `admin/ddwc-dashboard-shortcode.php` * Added `FontAwesome` and enqueued the stylesheet in `public/class-ddwc-public.php` diff --git a/README.txt b/README.txt index d6feb87..f3e910d 100644 --- a/README.txt +++ b/README.txt @@ -3,8 +3,8 @@ Contributors: deviodigital Donate link: https://www.deviodigital.com Tags: delivery, ecommerce, woocommerce, courier, delivery-drivers, marijuana, dispensary, cannabis, weed Requires at least: 3.0.1 -Tested up to: 5.7 -Stable tag: 3.2 +Tested up to: 5.8.1 +Stable tag: 3.2.1 License: GPLv2 or later License URI: http://www.gnu.org/licenses/gpl-2.0.html @@ -95,6 +95,10 @@ Learn more at [Delivery Fees for WooCommerce](https://www.wordpress.org/plugins/ == Changelog == += 3.2.1 = +* Added `ddwc_woocommerce_store_address` helper function in `admin/ddwc-functions.php` +* Updated text strings for localization for translations found in the `languages` folder + = 3.2 = * Added `ddwc_driver_dashboard_completed_orders_order_details_url` filter in `admin/ddwc-dashboard-shortcode.php` * Added `FontAwesome` and enqueued the stylesheet in `public/class-ddwc-public.php` diff --git a/delivery-drivers-for-woocommerce.php b/delivery-drivers-for-woocommerce.php index a7f4775..0a6319f 100644 --- a/delivery-drivers-for-woocommerce.php +++ b/delivery-drivers-for-woocommerce.php @@ -11,7 +11,7 @@ * Plugin Name: Delivery Drivers for WooCommerce * Plugin URI: https://www.deviodigital.com * Description: Streamline your mobile workforce and increase your bottom line. - * Version: 3.2 + * Version: 3.2.1 * Author: Devio Digital * Author URI: https://www.deviodigital.com * License: GPL-2.0+ @@ -19,7 +19,7 @@ * Text Domain: delivery-drivers-for-woocommerce * Domain Path: /languages * WC requires at least: 3.5.0 - * WC tested up to: 5.1.0 + * WC tested up to: 5.6.0 */ // If this file is called directly, abort. @@ -30,7 +30,7 @@ /** * Current plugin version. */ -define( 'DDWC_VERSION', '3.2' ); +define( 'DDWC_VERSION', '3.2.1' ); /** * The code that runs during plugin activation. diff --git a/includes/class-ddwc.php b/includes/class-ddwc.php index c1ee0d2..d3846be 100644 --- a/includes/class-ddwc.php +++ b/includes/class-ddwc.php @@ -69,7 +69,7 @@ class DDWC { */ public function __construct() { $this->plugin_name = 'delivery-drivers-for-woocommerce'; - $this->version = '3.2'; + $this->version = '3.2.1'; if ( defined( 'DDWC_VERSION' ) ) { $this->version = DDWC_VERSION;