Skip to content

Commit

Permalink
0.1.3 - Bump urllib3 to 1.26.5 (#30)
Browse files Browse the repository at this point in the history
* feat: Bump version to 0.1.3.

* docs(changelog): Add 0.1.3.

* chore: Bump dependencies.

* chore: Bump dependencies.
  • Loading branch information
dbrennand authored Jun 13, 2021
1 parent 7d13c78 commit 7351473
Show file tree
Hide file tree
Showing 5 changed files with 57 additions and 98 deletions.
149 changes: 53 additions & 96 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,8 @@ To run the tests, perform the following steps:

## Changelog

* 0.1.3 - Update urllib3 to 1.26.5 to address [CVE-2021-33503](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2021-33503).

* 0.1.2 - Update dependencies for security vulnerability. Fixed an issue with some tests failing.

* 0.1.1 - Added Context Manager support and tests. Updated dependencies and license year.
Expand Down
Binary file modified requirements.txt
Binary file not shown.
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

setup(
name="virustotal-python",
version="0.1.2",
version="0.1.3",
author="dbrennand",
description="A Python library to interact with the public VirusTotal v2 and v3 APIs.",
long_description=long_description,
Expand Down
2 changes: 1 addition & 1 deletion virustotal_python/virustotal.py
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ def __init__(
:param TIMEOUT: A float for the amount of time to wait in seconds for the HTTP request before timing out.
:raises ValueError: Raises ValueError when no API_KEY is provided or the API_VERSION is invalid.
"""
self.VERSION = "0.1.2"
self.VERSION = "0.1.3"
if API_KEY is None:
raise ValueError(
"An API key is required to interact with the VirusTotal API.\nProvide one to the API_KEY parameter or by setting the environment variable 'VIRUSTOTAL_API_KEY'."
Expand Down

0 comments on commit 7351473

Please sign in to comment.