Skip to content

Commit

Permalink
increase min PHP to 5.6
Browse files Browse the repository at this point in the history
  • Loading branch information
webzunft committed Jan 4, 2022
1 parent 460f933 commit ff817a5
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions edd-helpscout.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Plugin Name: Easy Digital Downloads integration for Help Scout
Plugin URI: https://webgilde.com
Description: Easy Digital Downloads integration for Help Scout
Version: 2.1.1
Version: 2.2.0
Author: Thomas Maier
Author URI: https://webgilde.com
Text Domain: edd-helpscout
Expand Down Expand Up @@ -33,7 +33,7 @@
defined( 'ABSPATH' ) or exit;

// define some useful constants
define( 'EDD_HELPSCOUT_VERSION', '2.1.1' );
define( 'EDD_HELPSCOUT_VERSION', '2.2.0' );
define( 'EDD_HELPSCOUT_FILE', __FILE__ );


Expand All @@ -47,8 +47,8 @@ function _load_edd_helpscout() {
return;
}

// do nothing if PHP is below version 5.3
if( version_compare( PHP_VERSION, '5.3', '<' ) ) {
// do nothing if PHP is below version 5.6
if( version_compare( PHP_VERSION, '5.6', '<' ) ) {
return;
}

Expand Down
6 changes: 4 additions & 2 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@ Contributors: webzunft, DvanKooten, Ibericode
Tags: easy-digital-downloads,helpscout,edd,support,help scout
Requires at least: 3.8
Tested up to: 5.8
Stable tag: 2.1.1
Requires PHP: 5.6
Stable tag: 2.2.0
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down Expand Up @@ -89,7 +90,7 @@ Make sure the "Secret Key" setting for your Help Scout application matches the v

== Changelog ==

= untagged =
= 2.2.0 =

- Feature: the toggle state for Licenses, Orders, and Subscriptons sections is now persistent, props @nosilver4u on github
- Feature: display the number of items found for each section in the heading, props @nosilver4u on github
Expand All @@ -98,6 +99,7 @@ Make sure the "Secret Key" setting for your Help Scout application matches the v
- Improvement: added the `edd_helpscout_endpoint_html_sections` and `edd_helpscout_endpoint_html` filters to customize existing section templates, props @Spreeuw on github
- Improvement: added the `edd_helpscout_order_list_item_download_details_start` and `edd_helpscout_order_list_item_download_details_end` actions to order template, props @Spreeuw on github
- Improvement: added the `edd_helpscout_default_section_toggle` and `edd_helpscout_persist_section_toggle` filters to force a specific toggle state for sections, props @Spreeuw on github
- Improvement: increased required PHP version to 5.6 to sync with WordPress core

= 2.1.1 =

Expand Down

0 comments on commit ff817a5

Please sign in to comment.