From 7abd4447b9c24217b31525362341d49bea2f23db Mon Sep 17 00:00:00 2001 From: mattyrob Date: Sat, 30 Mar 2019 13:33:42 +0000 Subject: [PATCH] Bump version And update the changelog --- ChangeLog.txt | 6 ++++++ subscribe2.php | 4 ++-- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/ChangeLog.txt b/ChangeLog.txt index b7ec989..43c8d12 100644 --- a/ChangeLog.txt +++ b/ChangeLog.txt @@ -1,3 +1,9 @@ += 10.28 = + +* Fix warning message for when set_time_limit() is disabled in php.ini +* Remove unused variable to fix error message +* Fixes for strict in_array() checks + = 10.27 = * Tightened checks for Coding Standards diff --git a/subscribe2.php b/subscribe2.php index ae09fc5..c909ff9 100644 --- a/subscribe2.php +++ b/subscribe2.php @@ -3,7 +3,7 @@ Plugin Name: Subscribe2 Plugin URI: https://subscribe2.wordpress.com/ Description: Notifies an email list when new entries are posted. -Version: 10.27 +Version: 10.28 Author: Matthew Robinson, Tanay Lakhani, Bryan Hadaway Author URI: https://subscribe2.wordpress.com/ Licence: GPLv3 @@ -54,7 +54,7 @@ // our version number. Don't touch this or any line below // unless you know exactly what you are doing -define( 'S2VERSION', '10.27' ); +define( 'S2VERSION', '10.28' ); define( 'S2PATH', trailingslashit( dirname( __FILE__ ) ) ); define( 'S2DIR', trailingslashit( dirname( plugin_basename( __FILE__ ) ) ) ); define( 'S2URL', plugin_dir_url( dirname( __FILE__ ) ) . S2DIR );