Skip to content

Commit

Permalink
🚀 RELEASE: v1.5
Browse files Browse the repository at this point in the history
  • Loading branch information
robertdevore committed Dec 5, 2020
1 parent 93bf5c9 commit 9ecc59c
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
11 changes: 9 additions & 2 deletions README.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
Contributors: deviodigital
Tags: delivery, delivery-times, courier, woocommerce, order-delivery
Requires at least: 3.0.1
Tested up to: 5.4.0
Stable tag: 1.4.1
Tested up to: 5.5.3
Stable tag: 1.5
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

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

== Changelog ==

= 1.5 =
* Added minDate value if prepDays is not 0 in `public/js/dtwc-public.js`
* Bugfix delivery times in checkout when selecting today in `public/js/dtwc-public.js`
* Updated minDate to be set as `tomorrow` if the current time is after all delivery times `public/js/dtwc-public.js`
* Updated text strings for localization in `languages/dtwc.pot`
* General code cleanup throughout multiple files

= 1.4.1 =
* Bugfix date display update on checkout in `public/js/dtwc-public.js`
* General inline doc updates throughout multiple files
Expand Down
4 changes: 2 additions & 2 deletions delivery-times-for-woocommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
* Plugin Name: Delivery Times for WooCommerce
* Plugin URI: https://deviodigital.com/how-to-use-the-delivery-times-for-woocommerce-plugin/
* Description: Allow your customers to choose their desired delivery date and time during checkout with WooCommerce
* Version: 1.4.1
* Version: 1.5
* Author: Devio Digital
* Author URI: https://www.deviodigital.com/
* License: GPL-2.0+
Expand All @@ -28,7 +28,7 @@
/**
* Current plugin version.
*/
define( 'DTWC_VERSION', '1.4.1' );
define( 'DTWC_VERSION', '1.5' );

/**
* The code that runs during plugin activation.
Expand Down
2 changes: 1 addition & 1 deletion includes/class-dtwc.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ class DTWC {
*/
public function __construct() {
$this->plugin_name = 'dtwc';
$this->version = '1.4.1';
$this->version = '1.5';

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

0 comments on commit 9ecc59c

Please sign in to comment.