Skip to content

Commit 80e88a1

Browse files
committed
bump: version 0.3.0 → 0.4.0
1 parent 239ec89 commit 80e88a1

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 0.4.0 (2025-10-31)
2+
3+
### Feat
4+
5+
- **service**: add cached services using aiocache (agnostic backend)
6+
7+
### Fix
8+
9+
- **deps**: forget to add aiocache to `all` extra
10+
11+
### Refactor
12+
13+
- correction of ty warning after upgrade packages
14+
115
## 0.3.0 (2025-10-15)
216

317
### BREAKING CHANGE

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "fastapi-api-key"
3-
version = "0.3.0"
3+
version = "0.4.0"
44
description = "fastapi-api-key provides secure, production-ready API key management for FastAPI. It offers pluggable hashing strategies (Argon2, bcrypt, or custom), backend-agnostic persistence (SQLAlchemy, in-memory, or your own repository), and an optional cache layer (aiocache, Redis). Includes a Typer CLI and a FastAPI router for CRUD management of keys."
55
readme = "README.md"
66
authors = [

tests/test_regression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def test_version():
2323

2424
assert hasattr(module, "__version__")
2525
assert isinstance(module.__version__, str)
26-
assert module.__version__ == "0.3.0" # Replace with the expected version
26+
assert module.__version__ == "0.4.0" # Replace with the expected version
2727

2828

2929
@pytest.mark.parametrize(

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)