Skip to content

Commit e2b1e9f

Browse files
committed
bump: version 0.2.0 → 0.2.1
1 parent 26516ab commit e2b1e9f

File tree

5 files changed

+10
-4
lines changed

5 files changed

+10
-4
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88

99
# Publish only when a version tag is pushed
1010
tags:
11-
- 'v*'
11+
- '[0-9]*'
1212

1313
permissions:
1414
contents: write # For creating the release

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
## 0.2.1 (2025-10-13)
2+
3+
### Fix
4+
5+
- **router**: add json schema to deleted 204 response
6+
17
## 0.2.0 (2025-10-11)
28

39
### Feat

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.2.0"
3+
version = "0.2.1"
44
description = "Add your description here"
55
readme = "README.md"
66
authors = [

tests/test_regression.py

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

1313
assert hasattr(module, "__version__")
1414
assert isinstance(module.__version__, str)
15-
assert module.__version__ == "0.2.0" # Replace with the expected version
15+
assert module.__version__ == "0.2.1" # Replace with the expected version
1616

1717

1818
@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)