chore: bump version to 0.3.2
This commit is contained in:
@@ -5,6 +5,12 @@ All notable changes to fastapi-traffic will be documented here.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.3.2] - 2026-03-19
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- Applied ruff and black code formatting
|
||||||
|
|
||||||
## [0.3.1] - 2026-03-19
|
## [0.3.1] - 2026-03-19
|
||||||
|
|
||||||
### Changed
|
### Changed
|
||||||
|
|||||||
@@ -6,6 +6,14 @@ All notable changes to FastAPI Traffic are documented here.
|
|||||||
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.1.0/>`_,
|
The format is based on `Keep a Changelog <https://keepachangelog.com/en/1.1.0/>`_,
|
||||||
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.
|
and this project adheres to `Semantic Versioning <https://semver.org/spec/v2.0.0.html>`_.
|
||||||
|
|
||||||
|
[0.3.2] - 2026-03-19
|
||||||
|
--------------------
|
||||||
|
|
||||||
|
Changed
|
||||||
|
^^^^^^^
|
||||||
|
|
||||||
|
- Applied ruff and black code formatting
|
||||||
|
|
||||||
[0.3.1] - 2026-03-19
|
[0.3.1] - 2026-03-19
|
||||||
--------------------
|
--------------------
|
||||||
|
|
||||||
|
|||||||
@@ -13,8 +13,8 @@ sys.path.insert(0, str(Path(__file__).parent.parent.resolve()))
|
|||||||
project = "fastapi-traffic"
|
project = "fastapi-traffic"
|
||||||
copyright = "2026, zanewalker"
|
copyright = "2026, zanewalker"
|
||||||
author = "zanewalker"
|
author = "zanewalker"
|
||||||
release = "0.3.1"
|
release = "0.3.2"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
extensions = [
|
extensions = [
|
||||||
|
|||||||
@@ -84,7 +84,7 @@ After installation, you can verify everything is working:
|
|||||||
|
|
||||||
import fastapi_traffic
|
import fastapi_traffic
|
||||||
print(fastapi_traffic.__version__)
|
print(fastapi_traffic.__version__)
|
||||||
# Should print: 0.3.1
|
# Should print: 0.3.2
|
||||||
|
|
||||||
Or check which backends are available:
|
Or check which backends are available:
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ from fastapi_traffic.exceptions import (
|
|||||||
RateLimitExceeded,
|
RateLimitExceeded,
|
||||||
)
|
)
|
||||||
|
|
||||||
__version__ = "0.3.1"
|
__version__ = "0.3.2"
|
||||||
__all__ = [
|
__all__ = [
|
||||||
"Algorithm",
|
"Algorithm",
|
||||||
"Backend",
|
"Backend",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[project]
|
[project]
|
||||||
name = "fastapi-traffic"
|
name = "fastapi-traffic"
|
||||||
version = "0.3.1"
|
version = "0.3.2"
|
||||||
description = "Production-grade rate limiting for FastAPI with multiple algorithms and backends"
|
description = "Production-grade rate limiting for FastAPI with multiple algorithms and backends"
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
requires-python = ">=3.10"
|
requires-python = ">=3.10"
|
||||||
|
|||||||
Reference in New Issue
Block a user