Skip to content

Commit 4595d4b

Browse files
committed
release 0.3.3
1 parent a06cd6c commit 4595d4b

File tree

2 files changed

+3
-104
lines changed

2 files changed

+3
-104
lines changed

pyproject.toml

Lines changed: 2 additions & 103 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,14 @@ requires = ["pdm-backend"]
66
# project
77
# ===
88
[tool.poetry]
9-
version = "0.3.2"
9+
version = "0.3.3"
1010

1111
[project]
1212
name = "hibp-downloader"
1313
license = {text = "BSD-3-Clause" }
1414
authors = [{name="Nicholas de Jong", email="[email protected]"}]
1515
description = "Efficiently download HIBP new pwned password data by hash-prefix for a local-copy"
16-
version = "0.3.2"
16+
version = "0.3.3"
1717
readme = "README.md"
1818
requires-python = ">=3.8,<4"
1919
keywords = ["hibp-downloader", "hibp", "haveibeenpwned", "haveibeenpwned-downloader", "sha1", "ntlm"]
@@ -119,104 +119,3 @@ ignore = ["E501"] # E501 line too long (151 > 120 characters)
119119
"src/hibp_downloader/models/__init__.py" = ["F401"] # F401 Module imported but unused
120120
"src/**/app.py" = ["W293"] # W293 blank line contains whitespace
121121
"src/hibp_downloader/lib/md4.py" = ["E203", "E741"] # E203 whitespace before ':'; E741 ambiguous variable name 'l'
122-
123-
124-
#
125-
#[tool.poetry]
126-
#name = "hibp-downloader"
127-
#version = "0.3.2"
128-
#description = "Efficiently download HIBP new pwned password data by hash-prefix for a local-copy"
129-
#authors = ["Nicholas de Jong <[email protected]>"]
130-
#license = "BSD-3-Clause"
131-
#readme = "README.md"
132-
#packages = [{ include = "hibp_downloader", from = "src" }]
133-
#classifiers = [
134-
# "Environment :: Console",
135-
# "Intended Audience :: System Administrators",
136-
# "License :: OSI Approved :: BSD License",
137-
# "Programming Language :: Python :: 3.8",
138-
# "Programming Language :: Python :: 3.9",
139-
# "Programming Language :: Python :: 3.10",
140-
# "Programming Language :: Python :: 3.11",
141-
# "Programming Language :: Python :: 3.12"
142-
#]
143-
#keywords = ["hibp-downloader", "hibp", "haveibeenpwned", "haveibeenpwned-downloader", "sha1", "ntlm"]
144-
#
145-
#[tool.poetry.urls]
146-
#Documentation = "https://threatpatrols.github.io/hibp-downloader"
147-
#Homepage = "https://github.com/threatpatrols/hibp-downloader"
148-
#Repository = "https://github.com/threatpatrols/hibp-downloader"
149-
#"Bug Tracker" = "https://github.com/threatpatrols/hibp-downloader/issues"
150-
#
151-
#[tool.poetry.scripts]
152-
#hibp-downloader = "hibp_downloader.main:entrypoint"
153-
#
154-
#[tool.poetry.dependencies]
155-
#python = "^3.8"
156-
#"httpx[http2]" = ">=0.21" # https://pypi.org/project/httpx/#history
157-
#httpcore = ">=0.14" # https://pypi.org/project/httpcore/#history
158-
#aiofiles = ">=0.8" # https://pypi.org/project/aiofiles/#history
159-
#"typer[all]" = ">=0.9.0" # https://pypi.org/project/typer/#history
160-
#shellingham = ">=1.3.0" # https://pypi.org/project/shellingham/#history
161-
#
162-
#[tool.poetry.dev-dependencies]
163-
#black = ">=23.0" # https://pypi.org/project/black/#history
164-
#flake8 = ">=7.0" # https://pypi.org/project/flake8/#history
165-
#isort = ">=5.13" # https://pypi.org/project/isort/#history
166-
#mypy = ">=1.8" # https://pypi.org/project/mypy/#history
167-
#pycln = ">=2.4" # https://pypi.org/project/pycln/#history
168-
#pytest = ">=7.4" # https://pypi.org/project/pytest/#history
169-
#safety = ">=3.0.1" # https://pypi.org/project/safety/#history
170-
#urllib3 = ">=2.1" # https://pypi.org/project/urllib3/#history
171-
#types-aiofiles = ">=23.2" # https://pypi.org/project/types-aiofiles/#history
172-
## NB: pip installs in .readthedocs.yml need to be kept up-to-date manually
173-
#novella = ">=0.2" # https://pypi.org/project/novella/#history
174-
#pydoc-markdown = ">=4.8" # https://pypi.org/project/pydoc-markdown/#history
175-
#mkdocs-material = ">=9.5" # https://pypi.org/project/mkdocs-material/#history
176-
#
177-
#[tool.poetry.plugins."slap.plugins.check"]
178-
#changelog = "slap.ext.checks.changelog:ChangelogValidationCheckPlugin"
179-
#general = "slap.ext.checks.general:GeneralChecksPlugin"
180-
#poetry = "slap.ext.checks.poetry:PoetryChecksPlugin"
181-
#release = "slap.ext.checks.release:ReleaseChecksPlugin"
182-
#
183-
#[tool.slap]
184-
#typed = true
185-
#release.branch = "dev"
186-
#
187-
#[tool.slap.test]
188-
#check = "slap check"
189-
#black = "black --check src/ tests/"
190-
#flake8 = "flake8 src/ tests/"
191-
#isort = "isort --check-only src/ tests/"
192-
#mypy = "dmypy run src/"
193-
#pycln = "pycln src/ tests/ --check"
194-
#pytest = "pytest tests/ -vv"
195-
#
196-
#[tool.slap.run]
197-
#format = "black src/ tests/ && isort src/ tests/"
198-
#docs-build = "cd docs && novella --base-url hibp-downloader/"
199-
#docs-server = "cd docs && novella --serve"
200-
#
201-
#[tool.mypy]
202-
#explicit_package_bases = true
203-
#ignore_missing_imports = true
204-
#mypy_path = ["src"]
205-
#namespace_packages = true
206-
#pretty = true
207-
#python_version = "3.8"
208-
#show_error_codes = true
209-
#show_error_context = true
210-
#strict = false
211-
#warn_no_return = true
212-
#warn_redundant_casts = true
213-
#warn_unreachable = true
214-
#warn_unused_ignores = true
215-
#
216-
#[tool.isort]
217-
#profile = "black"
218-
#line_length = 120
219-
#combine_as_imports = true
220-
#
221-
#[tool.black]
222-
#line-length = 120

src/hibp_downloader/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from .models import AppContext
1010

1111
__title__ = "HIBP Downloader"
12-
__version__ = "0.3.2"
12+
__version__ = "0.3.3"
1313

1414
LOGGER_NAME = "hibp-downloader"
1515
PWNEDPASSWORDS_API_URL = "https://api.pwnedpasswords.com"

0 commit comments

Comments
 (0)