Skip to content

Commit

Permalink
🚀 RELEASE: v1.4
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdevore committed Jan 1, 2021
1 parent c8790f6 commit 151e12d
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 5 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# Changelog

## 1.4
* Added new Spanish translation in `languages/dfwc-es_ES.pot`
* Added new French translation in `languages/dfwc-fr_FR.pot`
* Added new Italian translation in `languages/dfwc-it_IT.pot`
* Updated text strings for localization in `languages/dfwc.pot`
* General code cleanup in various areas throughout the plugin

## 1.3.2
* Added DFWC Pro version check with notice displayed if it's outdated in `delivery-fees-for-woocommerce.php`
* Bugfix fatal error in backend due to WC session data being called but not found in `admin/dfwc-woocommerce-delivery-fees.php`
Expand Down
9 changes: 8 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: woocommerce, delivery, delivery-fees, courier, shipping, shipping-fees
Requires at least: 3.0.1
Tested up to: 5.6
Stable tag: 1.3.2
Stable tag: 1.4
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -69,6 +69,13 @@ Learn more at [Delivery Drivers for WooCommerce](https://www.wordpress.org/plugi

== Changelog ==

= 1.4 =
* Added new Spanish translation in `languages/dfwc-es_ES.pot`
* Added new French translation in `languages/dfwc-fr_FR.pot`
* Added new Italian translation in `languages/dfwc-it_IT.pot`
* Updated text strings for localization in `languages/dfwc.pot`
* General code cleanup in various areas throughout the plugin

= 1.3.2 =
* Added DFWC Pro version check with notice displayed if it's outdated in `delivery-fees-for-woocommerce.php`
* Bugfix fatal error in backend due to WC session data being called but not found in `admin/dfwc-woocommerce-delivery-fees.php`
Expand Down
6 changes: 3 additions & 3 deletions delivery-fees-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Plugin Name: Delivery Fees for WooCommerce
* Plugin URI: https://www.deviodigital.com/delivery-fees-for-woocommerce
* Description: Adds a custom shipping method to WooCommerce for delivery services.
* Version: 1.3.2
* Version: 1.4
* Author: Devio Digital
* Author URI: https://www.deviodigital.com
* License: GPL-2.0+
Expand All @@ -27,7 +27,7 @@
/**
* Current plugin version.
*/
define( 'DFWC_VERSION', '1.3.2' );
define( 'DFWC_VERSION', '1.4' );

/**
* The code that runs during plugin activation.
Expand Down Expand Up @@ -120,7 +120,7 @@ function dfwc_check_pro_version() {
// Set pro version number.
$pro_version = DFWC_PRO_VERSION;
// Check pro version number.
if ( '0' == $pro_version || $pro_version < '1.2' ) {
if ( '0' == $pro_version || $pro_version < '1.3' ) {
// Add DFWC Pro version upgrade notice to admin notices.
add_action( 'admin_notices', 'dfwc_update_dfwc_pro_notice' );
}
Expand Down
2 changes: 1 addition & 1 deletion includes/class-dfwc.php
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ class DFWC {
public function __construct() {

$this->plugin_name = 'dfwc';
$this->version = '1.3.2';
$this->version = '1.4';

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

0 comments on commit 151e12d

Please sign in to comment.