Plugin Directory

Changeset 2803506


Ignore:
Timestamp:
10/24/2022 02:16:39 PM (3 years ago)
Author:
carl-alberto
Message:

Update to version 1.0.4 from GitHub

Location:
easy-ip-blocker
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • easy-ip-blocker/tags/1.0.4/easy-ip-blocker.php

    r2611915 r2803506  
    22/**
    33 * Plugin Name: Easy IP Blocker
    4  * Version: 1.0.3
     4 * Version: 1.0.4
    55 * Plugin URI: https://wordpress.org/plugins/easy-ip-blocker/
    66 * Description: Easily blocks IPs
     
    88 * Author URI: https://carlalberto.code.blog/
    99 * Requires at least: 5.0
    10  * Tested up to: 5.8.1
     10 * Tested up to: 6.0.3
    1111 *
    1212 * Text Domain: easy-ip-blocker
     
    3636 */
    3737function easy_ip_blocker() {
    38     $instance = Easy_IP_Blocker::instance( __FILE__, '1.0.3' );
     38    $instance = Easy_IP_Blocker::instance( __FILE__, '1.0.4' );
    3939
    4040    if ( is_null( $instance->settings ) ) {
  • easy-ip-blocker/tags/1.0.4/includes/class-easy-ip-blocker.php

    r2611915 r2803506  
    116116     * @static
    117117     */
    118     public static function instance( $file = '', $version = '1.0.3' ) {
     118    public static function instance( $file = '', $version = '1.0.4' ) {
    119119        if ( is_null( self::$_instance ) ) {
    120120            self::$_instance = new self( $file, $version );
     
    130130     * @param string $version Plugin version.
    131131     */
    132     public function __construct( $file = '', $version = '1.0.3' ) {
     132    public function __construct( $file = '', $version = '1.0.4' ) {
    133133        $this->_version = $version;
    134134        $this->_token   = 'easy_ip_blocker';
  • easy-ip-blocker/tags/1.0.4/readme.txt

    r2611915 r2803506  
    44Tags: wordpress, plugin,
    55Requires at least: 5.0
    6 Tested up to: 5.8.1
    7 Stable tag: 1.0.3
     6Tested up to: 6.0.3
     7Stable tag: 1.0.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3131== Changelog ==
    3232
     33= 1.0.4 =
     34* 2022-10-24
     35* Version bump to WordPress versino 6.0.3 compatibility
     36
    3337= 1.0.3 =
    3438* 2021-08-9
  • easy-ip-blocker/trunk/easy-ip-blocker.php

    r2611915 r2803506  
    22/**
    33 * Plugin Name: Easy IP Blocker
    4  * Version: 1.0.3
     4 * Version: 1.0.4
    55 * Plugin URI: https://wordpress.org/plugins/easy-ip-blocker/
    66 * Description: Easily blocks IPs
     
    88 * Author URI: https://carlalberto.code.blog/
    99 * Requires at least: 5.0
    10  * Tested up to: 5.8.1
     10 * Tested up to: 6.0.3
    1111 *
    1212 * Text Domain: easy-ip-blocker
     
    3636 */
    3737function easy_ip_blocker() {
    38     $instance = Easy_IP_Blocker::instance( __FILE__, '1.0.3' );
     38    $instance = Easy_IP_Blocker::instance( __FILE__, '1.0.4' );
    3939
    4040    if ( is_null( $instance->settings ) ) {
  • easy-ip-blocker/trunk/includes/class-easy-ip-blocker.php

    r2611915 r2803506  
    116116     * @static
    117117     */
    118     public static function instance( $file = '', $version = '1.0.3' ) {
     118    public static function instance( $file = '', $version = '1.0.4' ) {
    119119        if ( is_null( self::$_instance ) ) {
    120120            self::$_instance = new self( $file, $version );
     
    130130     * @param string $version Plugin version.
    131131     */
    132     public function __construct( $file = '', $version = '1.0.3' ) {
     132    public function __construct( $file = '', $version = '1.0.4' ) {
    133133        $this->_version = $version;
    134134        $this->_token   = 'easy_ip_blocker';
  • easy-ip-blocker/trunk/readme.txt

    r2611915 r2803506  
    44Tags: wordpress, plugin,
    55Requires at least: 5.0
    6 Tested up to: 5.8.1
    7 Stable tag: 1.0.3
     6Tested up to: 6.0.3
     7Stable tag: 1.0.4
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    3131== Changelog ==
    3232
     33= 1.0.4 =
     34* 2022-10-24
     35* Version bump to WordPress versino 6.0.3 compatibility
     36
    3337= 1.0.3 =
    3438* 2021-08-9
Note: See TracChangeset for help on using the changeset viewer.