Skip to content

Commit

Permalink
1.0.2 deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
Carl Alberto committed Sep 26, 2020
1 parent a722f15 commit 1ac86b6
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/wprepodeploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@ jobs:
env:
SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }}
SVN_USERNAME: ${{ secrets.SVN_USERNAME }}
SLUG: easy-symlinks
SLUG: easy-ip-blocker
4 changes: 2 additions & 2 deletions easy-ip-blocker.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?php
/**
* Plugin Name: Easy IP Blocker
* Version: 1.0.1
* Version: 1.0.2
* Plugin URI: https://wordpress.org/plugins/easy-ip-blocker/
* Description: Easily blocks IPs
* Author: Carl Alberto
Expand Down Expand Up @@ -35,7 +35,7 @@
* @return object Easy_IP_Blocker
*/
function easy_ip_blocker() {
$instance = Easy_IP_Blocker::instance( __FILE__, '1.0.1' );
$instance = Easy_IP_Blocker::instance( __FILE__, '1.0.2' );

if ( is_null( $instance->settings ) ) {
$instance->settings = Easy_IP_Blocker_Settings::instance( $instance );
Expand Down
4 changes: 2 additions & 2 deletions includes/class-easy-ip-blocker.php
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ class Easy_IP_Blocker {
* @since 1.0.0
* @static
*/
public static function instance( $file = '', $version = '1.0.1' ) {
public static function instance( $file = '', $version = '1.0.2' ) {
if ( is_null( self::$_instance ) ) {
self::$_instance = new self( $file, $version );
}
Expand All @@ -129,7 +129,7 @@ public static function instance( $file = '', $version = '1.0.1' ) {
* @param string $file File constructor.
* @param string $version Plugin version.
*/
public function __construct( $file = '', $version = '1.0.1' ) {
public function __construct( $file = '', $version = '1.0.2' ) {
$this->_version = $version;
$this->_token = 'easy_ip_blocker';

Expand Down
2 changes: 1 addition & 1 deletion readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Donate link: https://wordpress.org/plugins/easy-ip-blocker/
Tags: wordpress, plugin,
Requires at least: 5.0
Tested up to: 5.5.1
Stable tag: 1.0.1
Stable tag: 1.0.2
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand Down

0 comments on commit 1ac86b6

Please sign in to comment.