diff --git a/README.md b/README.md index 6386a95..a45812f 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ * Contributors: Stefan Kalscheuer * Requires at least: 3.9 * Tested up to: 4.8 -* Stable tag: 1.3.1 +* Stable tag: 1.4.0 * License: GPLv3 or later * License URI: https://www.gnu.org/licenses/gpl-3.0.html @@ -80,10 +80,11 @@ Because of this, an IP blacklist can only be applied while processing the reques ## Changelog ## -### 1.4.0 / work in progress ### +### 1.4.0 / 10.06.2017 ### * IP blacklist implemented (#7) * Target page blacklist implemented (#8) * Internal configuration restructured (upgrade on plugin activation) +* Statify hook name changed to `statify__skip_tracking` (as of Statify 1.5.0) ### 1.3.1 / 09.12.2016 ### * Continue filtering if no filter applies (#6) diff --git a/inc/statifyblacklist.class.php b/inc/statifyblacklist.class.php index 0d3548f..233c427 100644 --- a/inc/statifyblacklist.class.php +++ b/inc/statifyblacklist.class.php @@ -7,7 +7,7 @@ defined( 'ABSPATH' ) OR exit; * Statify Blacklist * * @since 1.0.0 - * @version 1.4.0~dev + * @version 1.4.0 */ class StatifyBlacklist { diff --git a/inc/statifyblacklist_admin.class.php b/inc/statifyblacklist_admin.class.php index c21d803..b93158d 100644 --- a/inc/statifyblacklist_admin.class.php +++ b/inc/statifyblacklist_admin.class.php @@ -7,7 +7,7 @@ defined( 'ABSPATH' ) OR exit; * Statify Blacklist admin configuration * * @since 1.0.0 - * @version 1.4.0~dev + * @version 1.4.0 */ class StatifyBlacklist_Admin extends StatifyBlacklist { /** diff --git a/inc/statifyblacklist_system.class.php b/inc/statifyblacklist_system.class.php index 861da8e..4bdece9 100644 --- a/inc/statifyblacklist_system.class.php +++ b/inc/statifyblacklist_system.class.php @@ -7,7 +7,7 @@ defined( 'ABSPATH' ) OR exit; * Statify Blacklist system configuration * * @since 1.0.0 - * @version 1.4.0~dev + * @version 1.4.0 */ class StatifyBlacklist_System extends StatifyBlacklist { diff --git a/statify-blacklist.php b/statify-blacklist.php index 65dc44c..48b1c18 100644 --- a/statify-blacklist.php +++ b/statify-blacklist.php @@ -8,7 +8,7 @@ Author: Stefan Kalscheuer Author URI: https://www.stklcode.de Plugin URI: https://wordpress.org/plugins/statify-blacklist License: GPLv3 or later -Version: 1.4.0~dev +Version: 1.4.0 */ /* Quit */ diff --git a/test/StatifyBlacklistTest.php b/test/StatifyBlacklistTest.php index c619f47..33d4172 100644 --- a/test/StatifyBlacklistTest.php +++ b/test/StatifyBlacklistTest.php @@ -10,7 +10,7 @@ require_once( '../inc/statifyblacklist_admin.class.php' ); * * PHPUnit test class for StatifyBlacklist * - * @version 1.4.0~dev + * @version 1.4.0 */ class StatifyBlacklistTest extends PHPUnit_Framework_TestCase {