diff --git a/CHANGES.md b/CHANGES.md index f7e60f4..0569fe5 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,3 +1,7 @@ +#### Version 0.2.6 - 2022/10/13 +* Remove usage of 'jetpack_development_mode' that's been deprecated. props @crstauf +* Gracefully handle empty values for script and stylesheet URLs. props @johnbillion + #### Version 0.2.5 - 2019/11/15 * Remove usage of method that's been deprecated in WordPress trunk. props @johnbillion diff --git a/airplane-mode.php b/airplane-mode.php index 94035c3..6d34ad4 100644 --- a/airplane-mode.php +++ b/airplane-mode.php @@ -5,7 +5,7 @@ * Description: Control loading of external files when developing locally. * Author: Andrew Norcross * Author URI: http://andrewnorcross.com/ - * Version: 0.2.5 + * Version: 0.2.6 * Text Domain: airplane-mode * Requires WP: 4.4 * Domain Path: languages @@ -49,7 +49,7 @@ // Set our version if not already defined. if ( ! defined( 'AIRMDE_VER' ) ) { - define( 'AIRMDE_VER', '0.2.5' ); + define( 'AIRMDE_VER', '0.2.6' ); } // Load our WP-CLI helper if that is defined and available. diff --git a/readme.txt b/readme.txt index d9e1875..947a030 100644 --- a/readme.txt +++ b/readme.txt @@ -4,8 +4,8 @@ Website Link: https://github.com/norcross/airplane-mode Donate link: https://andrewnorcross.com/donate Tags: external calls, HTTP Requires at least: 4.4 -Tested up to: 5.3 -Stable tag: 0.2.5 +Tested up to: 6.0 +Stable tag: 0.2.6 License: MIT License URI: http://norcross.mit-license.org/ @@ -45,6 +45,10 @@ Because you are a jet set developer who needs to work without internet. == Changelog == += 0.2.6 - 2022/10/13 +* Remove usage of 'jetpack_development_mode' that's been deprecated. props @crstauf +* Gracefully handle empty values for script and stylesheet URLs. props @johnbillion + = 0.2.5 - 2019/11/15 * Remove usage of method that's been deprecated in WordPress trunk. props @johnbillion