Skip to content

Commit

Permalink
chore(release): 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcocesarato committed Mar 28, 2021
1 parent a5b0b44 commit 3d91eae
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 6 deletions.
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,20 @@
All notable changes to this project will be documented in this file.
<!--- END HEADER -->

## [0.9.0](https://github.com/marcocesarato/PHP-Antimalware-Scanner/compare/v0.8.3...v0.9.0) (2021-03-28)


### Features

* Add new dangerous functions ([1194eb](https://github.com/marcocesarato/PHP-Antimalware-Scanner/commit/1194eb533d154c5fd20f5f0d038cfedc55b31427))
* Add new raw data signatures ([a5b0b4](https://github.com/marcocesarato/PHP-Antimalware-Scanner/commit/a5b0b447014db949bcb6b4b69d2e4380af92229b))

### Bug Fixes

* Autoload on phar ([3c7295](https://github.com/marcocesarato/PHP-Antimalware-Scanner/commit/3c7295ca0add3c277dfbde32432e1afed11cd02e))

---

## [0.8.3](https://github.com/marcocesarato/AMWScan/compare/v0.8.2...v0.8.3) (2021-03-03)


Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

<h1 align="center">PHP Antimalware Scanner</h1>

![Version](https://img.shields.io/badge/version-0.8.3-brightgreen?style=for-the-badge)
![Version](https://img.shields.io/badge/version-0.9.0-brightgreen?style=for-the-badge)
![Requirements](https://img.shields.io/badge/php-%3E%3D%205.5-4F5D95?style=for-the-badge)
![Code Style](https://img.shields.io/badge/code%20style-PSR-blue?style=for-the-badge)
![License](https://img.shields.io/github/license/marcocesarato/PHP-Antimalware-Scanner?style=for-the-badge)
Expand Down
Binary file modified dist/scanner
Binary file not shown.
2 changes: 1 addition & 1 deletion dist/version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.8.3
0.9.0
2 changes: 1 addition & 1 deletion src/Scanner.php
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ class Scanner
*
* @var string
*/
public static $version = '0.8.3';
public static $version = '0.9.0';

/**
* Repo url.
Expand Down
4 changes: 1 addition & 3 deletions src/index.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,7 @@
if (Phar::running() === '') {
$file = __DIR__ . '/' . $file;
}
if (file_exists($file)) {
require_once $file;
}
require_once $file;
}
});

Expand Down

0 comments on commit 3d91eae

Please sign in to comment.