Skip to content

Commit

Permalink
🚀 RELEASE: v3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdevore committed Jan 1, 2021
1 parent cc5658a commit 622650a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## 3.1

* Added new Spanish translation in `languages/ddwc-es_ES.pot`
* Added new French translation in `languages/ddwc-fr_FR.pot`
* Added new Italian translation in `languages/ddwc-it_IT.pot`

## 3.0
* Added customer note to order details in driver dashboard in `admin/ddwc-dashboard-shortcode.php`
* Added additional div wrappers to driver display on customer order in `admin/ddwc-woocommerce-driver-ratings.php`
Expand Down
7 changes: 6 additions & 1 deletion README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ 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.6
Stable tag: 3.0
Stable tag: 3.1
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -95,6 +95,11 @@ Learn more at [Delivery Fees for WooCommerce](https://www.wordpress.org/plugins/

== Changelog ==

= 3.1 =
* Added new Spanish translation in `languages/ddwc-es_ES.pot`
* Added new French translation in `languages/ddwc-fr_FR.pot`
* Added new Italian translation in `languages/ddwc-it_IT.pot`

= 3.0 =
* Added customer note to order details in driver dashboard in `admin/ddwc-dashboard-shortcode.php`
* Added additional div wrappers to driver display on customer order in `admin/ddwc-woocommerce-driver-ratings.php`
Expand Down
6 changes: 3 additions & 3 deletions delivery-drivers-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -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.0
* Version: 3.1
* Author: Devio Digital
* Author URI: https://www.deviodigital.com
* License: GPL-2.0+
Expand All @@ -28,7 +28,7 @@
/**
* Current plugin version.
*/
define( 'DDWC_VERSION', '3.0' );
define( 'DDWC_VERSION', '3.1' );

/**
* The code that runs during plugin activation.
Expand Down Expand Up @@ -116,7 +116,7 @@ function ddwc_check_pro_version() {
}
// Set pro version number.
$pro_version = DDWC_PRO_VERSION;
if ( '0' == $pro_version || $pro_version < '2.0' ) {
if ( '0' == $pro_version || $pro_version < '2.1' ) {
add_action( 'admin_notices', 'ddwc_update_ddwc_pro_notice' );
}
}
Expand Down
2 changes: 1 addition & 1 deletion includes/class-ddwc.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class DDWC {
*/
public function __construct() {
$this->plugin_name = 'ddwc';
$this->version = '3.0';
$this->version = '3.1';

if ( defined( 'DDWC_VERSION' ) ) {
$this->version = DDWC_VERSION;
Expand Down

0 comments on commit 622650a

Please sign in to comment.