Skip to content

Commit

Permalink
release 0.3.1
Browse files Browse the repository at this point in the history
Implements download retries
New download options --http-timeout and --http-max-retries
Decrease default --chunk-size from 10 to 8
Improve --debug output to provide better observability in error conditions
  • Loading branch information
ndejong committed Feb 9, 2024
1 parent 15de64c commit 5ac9b99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"

[tool.poetry]
name = "hibp-downloader"
version = "0.3.0"
version = "0.3.1"
description = "Efficiently download HIBP new pwned password data by hash-prefix for a local-copy"
authors = ["Nicholas de Jong <[email protected]>"]
license = "BSD-3-Clause"
Expand Down
2 changes: 1 addition & 1 deletion src/hibp_downloader/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
from .models import AppContext

__title__ = "HIBP Downloader"
__version__ = "0.3.0"
__version__ = "0.3.1"

LOGGER_NAME = "hibp-downloader"
PWNEDPASSWORDS_API_URL = "https://api.pwnedpasswords.com"
Expand Down

0 comments on commit 5ac9b99

Please sign in to comment.