Skip to content

Commit 68e8849

Browse files
authored
Merge pull request #39 from dbrennand/1.0.2
1.0.2
2 parents 9ee5e8b + 15db548 commit 68e8849

6 files changed

Lines changed: 548 additions & 151 deletions

File tree

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Changelog
22

3+
## 1.0.2
4+
5+
* chore(deps): Update all dependencies.
6+
37
## 1.0.1
48

59
* chore(deps): Update all dependencies.

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2022 dbrennand
3+
Copyright (c) 2023 dbrennand
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

poetry.lock

Lines changed: 538 additions & 145 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
"""
22
MIT License
33
4-
Copyright (c) 2022 dbrennand
4+
Copyright (c) 2023 dbrennand
55
66
Permission is hereby granted, free of charge, to any person obtaining a copy
77
of this software and associated documentation files (the "Software"), to deal
@@ -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)