diff --git a/README.md b/README.md index 168f497..21cb34c 100644 --- a/README.md +++ b/README.md @@ -118,6 +118,8 @@ pprint(resp) ## Changelog +* 0.0.9 - Update dependencies for security vulnerability. + * 0.0.8 - Updated dependencies, removed method `file_rescan` * 0.0.7 - Added tests. Updated dependencies, Updated examples and README, `url_report` param `scan` now accepts `type(int)`, **no** longer `type(str)` diff --git a/requirements.txt b/requirements.txt index eb64e96..b6ce5c8 100644 Binary files a/requirements.txt and b/requirements.txt differ diff --git a/setup.py b/setup.py index 7221eef..d000730 100644 --- a/setup.py +++ b/setup.py @@ -5,7 +5,7 @@ setup( name="virustotal-python", - version="0.0.8", + version="0.0.9", author="Dextroz", description="A light wrapper around the public VirusTotal API.", long_description=long_description, diff --git a/virustotal_python/virustotal.py b/virustotal_python/virustotal.py index c1dd6ad..fef4c93 100644 --- a/virustotal_python/virustotal.py +++ b/virustotal_python/virustotal.py @@ -36,7 +36,7 @@ def __init__(self, API_KEY: str = None, PROXIES: dict = None): self.API_KEY = API_KEY self.PROXIES = PROXIES self.BASEURL = "https://www.virustotal.com/vtapi/v2/" - self.VERSION = "0.0.8" + self.VERSION = "0.0.9" self.headers = { "Accept-Encoding": "gzip, deflate", "User-Agent": f"gzip, virustotal-python {self.VERSION}",