Skip to content

Commit f02905a

Browse files
committed
chore: bump version to 1.0.2
1 parent 28fea65 commit f02905a

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "virustotal-python"
3-
version = "1.0.1"
3+
version = "1.0.2"
44
description = "A Python library to interact with the public VirusTotal v3 and v2 APIs."
55
authors = ["dbrennand"]
66
license = "MIT"

virustotal_python/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@
88

99
__all__ = ["Virustotal", "VirustotalResponse", "VirustotalError"]
1010
__author__ = "dbrennand"
11-
__version__ = "1.0.1"
11+
__version__ = "1.0.2"

virustotal_python/virustotal.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -267,14 +267,14 @@ def __init__(
267267
self.BASEURL = "https://www.virustotal.com/vtapi/v2/"
268268
self.HEADERS = {
269269
"Accept-Encoding": "gzip, deflate",
270-
"User-Agent": f"gzip, virustotal-python 1.0.1",
270+
"User-Agent": f"gzip, virustotal-python 1.0.2",
271271
}
272272
elif (API_VERSION == "v3") or (API_VERSION == 3):
273273
self.API_VERSION = API_VERSION
274274
self.BASEURL = "https://www.virustotal.com/api/v3/"
275275
self.HEADERS = {
276276
"Accept-Encoding": "gzip, deflate",
277-
"User-Agent": f"gzip, virustotal-python 1.0.1",
277+
"User-Agent": f"gzip, virustotal-python 1.0.2",
278278
"x-apikey": f"{self.API_KEY}",
279279
}
280280
else:

0 commit comments

Comments
 (0)