diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5c4aac2..b32d46c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -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/),
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
### Changed
diff --git a/docs/changelog.rst b/docs/changelog.rst
index 67fe2dc..d1ae085 100644
--- a/docs/changelog.rst
+++ b/docs/changelog.rst
@@ -6,6 +6,14 @@ All notable changes to FastAPI Traffic are documented here.
The format is based on `Keep a Changelog `_,
and this project adheres to `Semantic Versioning `_.
+[0.3.2] - 2026-03-19
+--------------------
+
+Changed
+^^^^^^^
+
+- Applied ruff and black code formatting
+
[0.3.1] - 2026-03-19
--------------------
diff --git a/docs/conf.py b/docs/conf.py
index e753d44..087711f 100644
--- a/docs/conf.py
+++ b/docs/conf.py
@@ -13,8 +13,8 @@ sys.path.insert(0, str(Path(__file__).parent.parent.resolve()))
project = "fastapi-traffic"
copyright = "2026, zanewalker"
author = "zanewalker"
-release = "0.3.1"
-version = "0.3.1"
+release = "0.3.2"
+version = "0.3.2"
# -- General configuration ---------------------------------------------------
extensions = [
diff --git a/docs/getting-started/installation.rst b/docs/getting-started/installation.rst
index e1fd5cc..e9541ba 100644
--- a/docs/getting-started/installation.rst
+++ b/docs/getting-started/installation.rst
@@ -84,7 +84,7 @@ After installation, you can verify everything is working:
import fastapi_traffic
print(fastapi_traffic.__version__)
- # Should print: 0.3.1
+ # Should print: 0.3.2
Or check which backends are available:
diff --git a/fastapi_traffic/__init__.py b/fastapi_traffic/__init__.py
index 3f18a2d..aab1ffd 100644
--- a/fastapi_traffic/__init__.py
+++ b/fastapi_traffic/__init__.py
@@ -20,7 +20,7 @@ from fastapi_traffic.exceptions import (
RateLimitExceeded,
)
-__version__ = "0.3.1"
+__version__ = "0.3.2"
__all__ = [
"Algorithm",
"Backend",
diff --git a/pyproject.toml b/pyproject.toml
index aa9f0df..6d596ff 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[project]
name = "fastapi-traffic"
-version = "0.3.1"
+version = "0.3.2"
description = "Production-grade rate limiting for FastAPI with multiple algorithms and backends"
readme = "README.md"
requires-python = ">=3.10"