Skip to content

Commit e35499d

Browse files
authored
v0.9.13
2 parents f04a68d + 93c9766 commit e35499d

12 files changed

+33
-30
lines changed

bin/abuseipdb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,14 +8,14 @@
88
* / ___ \| |_) | |_| \__ \ __/| || __/| |_| | |_) |
99
* /_/ \_\_.__/ \__,_|___/\___|___|_| |____/|____/
1010
*
11-
* This file is part of Kristuff\AbsuseIPDB.
11+
* This file is part of Kristuff\AbuseIPDB.
1212
*
13-
* (c) Kristuff <contact@kristuff.fr>
13+
* (c) Kristuff <kristuff@kristuff.fr>
1414
*
1515
* For the full copyright and license information, please view the LICENSE
1616
* file that was distributed with this source code.
1717
*
18-
* @version 0.9.12
18+
* @version 0.9.13
1919
* @copyright 2020-2021 Kristuff
2020
*/
2121

composer.json

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,15 @@
77
"authors": [
88
{
99
"name": "Kristuff",
10-
"homepage": "https://github.com/kristuff"
10+
"homepage": "https://github.com/kristuff",
11+
"email": "[email protected]",
12+
"role": "Developer"
1113
}
1214
],
1315
"require": {
1416
"php": ">=7.1",
1517
"kristuff/mishell": "^1.5-stable",
16-
"kristuff/abuseipdb": "0.9.11"
18+
"kristuff/abuseipdb": "^0.9.12-stable"
1719
},
1820
"bin": [
1921
"bin/abuseipdb"

doc/sample-blacklist-plaintext.png

-922 Bytes
Loading

doc/sample-check-internal-ip.png

418 Bytes
Loading

src/AbstractClient.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
* / ___ \| |_) | |_| \__ \ __/| || __/| |_| | |_) |
88
* /_/ \_\_.__/ \__,_|___/\___|___|_| |____/|____/
99
*
10-
* This file is part of Kristuff\AbsuseIPDB.
10+
* This file is part of Kristuff\AbuseIPDB.
1111
*
12-
* (c) Kristuff <contact@kristuff.fr>
12+
* (c) Kristuff <kristuff@kristuff.fr>
1313
*
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.9.12
17+
* @version 0.9.13
1818
* @copyright 2020-2021 Kristuff
1919
*/
2020
namespace Kristuff\AbuseIPDB;
@@ -42,7 +42,7 @@ abstract class AbstractClient extends ShellErrorHandler
4242
/**
4343
* @var string
4444
*/
45-
const VERSION = 'v0.9.12';
45+
const VERSION = 'v0.9.13';
4646

4747
/**
4848
* @var QuietApiHandler

src/AbuseIPDBClient.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
* / ___ \| |_) | |_| \__ \ __/| || __/| |_| | |_) |
88
* /_/ \_\_.__/ \__,_|___/\___|___|_| |____/|____/
99
*
10-
* This file is part of Kristuff\AbsuseIPDB.
10+
* This file is part of Kristuff\AbuseIPDB.
1111
*
12-
* (c) Kristuff <contact@kristuff.fr>
12+
* (c) Kristuff <kristuff@kristuff.fr>
1313
*
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.9.12
17+
* @version 0.9.13
1818
* @copyright 2020-2021 Kristuff
1919
*/
2020
namespace Kristuff\AbuseIPDB;
@@ -487,6 +487,7 @@ protected static function getBlacklist(array $arguments): void
487487

488488
// response could be json on error, while plaintext flag is set
489489
$decodedResponse = $response->getObject();
490+
490491
if (self::hasErrors($decodedResponse, false)){
491492
self::printFooter($time);
492493
Program::exit(1);

src/BulkReportTrait.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
* / ___ \| |_) | |_| \__ \ __/| || __/| |_| | |_) |
88
* /_/ \_\_.__/ \__,_|___/\___|___|_| |____/|____/
99
*
10-
* This file is part of Kristuff\AbsuseIPDB.
10+
* This file is part of Kristuff\AbuseIPDB.
1111
*
12-
* (c) Kristuff <contact@kristuff.fr>
12+
* (c) Kristuff <kristuff@kristuff.fr>
1313
*
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.9.12
17+
* @version 0.9.13
1818
* @copyright 2020-2021 Kristuff
1919
*/
2020
namespace Kristuff\AbuseIPDB;

src/CheckBlockTrait.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
* / ___ \| |_) | |_| \__ \ __/| || __/| |_| | |_) |
88
* /_/ \_\_.__/ \__,_|___/\___|___|_| |____/|____/
99
*
10-
* This file is part of Kristuff\AbsuseIPDB.
10+
* This file is part of Kristuff\AbuseIPDB.
1111
*
12-
* (c) Kristuff <contact@kristuff.fr>
12+
* (c) Kristuff <kristuff@kristuff.fr>
1313
*
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.9.12
17+
* @version 0.9.13
1818
* @copyright 2020-2021 Kristuff
1919
*/
2020
namespace Kristuff\AbuseIPDB;

src/CheckTrait.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
* / ___ \| |_) | |_| \__ \ __/| || __/| |_| | |_) |
88
* /_/ \_\_.__/ \__,_|___/\___|___|_| |____/|____/
99
*
10-
* This file is part of Kristuff\AbsuseIPDB.
10+
* This file is part of Kristuff\AbuseIPDB.
1111
*
12-
* (c) Kristuff <contact@kristuff.fr>
12+
* (c) Kristuff <kristuff@kristuff.fr>
1313
*
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.9.12
17+
* @version 0.9.13
1818
* @copyright 2020-2021 Kristuff
1919
*/
2020
namespace Kristuff\AbuseIPDB;

src/ShellErrorHandler.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
* / ___ \| |_) | |_| \__ \ __/| || __/| |_| | |_) |
88
* /_/ \_\_.__/ \__,_|___/\___|___|_| |____/|____/
99
*
10-
* This file is part of Kristuff\AbsuseIPDB.
10+
* This file is part of Kristuff\AbuseIPDB.
1111
*
12-
* (c) Kristuff <contact@kristuff.fr>
12+
* (c) Kristuff <kristuff@kristuff.fr>
1313
*
1414
* For the full copyright and license information, please view the LICENSE
1515
* file that was distributed with this source code.
1616
*
17-
* @version 0.9.12
17+
* @version 0.9.13
1818
* @copyright 2020-2021 Kristuff
1919
*/
2020
namespace Kristuff\AbuseIPDB;

0 commit comments

Comments
 (0)