diff --git a/docs/release-notes.md b/docs/release-notes.md
index b17fabef4..b5e2124c5 100644
--- a/docs/release-notes.md
+++ b/docs/release-notes.md
@@ -1,3 +1,16 @@
+## 0.37.2
+
+March 5, 2024
+
+#### Added
+
+* Add `bytes` to `_RequestData` type [#2510](https://github.com/encode/starlette/pull/2510).
+
+#### Fixed
+
+* Revert "Turn `scope["client"]` to `None` on `TestClient` (#2377)" [#2525](https://github.com/encode/starlette/pull/2525).
+* Remove deprecated `app` argument passed to `httpx.Client` on the `TestClient` [#2526](https://github.com/encode/starlette/pull/2526).
+
 ## 0.37.1
 
 February 9, 2024
diff --git a/starlette/__init__.py b/starlette/__init__.py
index 04b7c866d..4a2dd331e 100644
--- a/starlette/__init__.py
+++ b/starlette/__init__.py
@@ -1 +1 @@
-__version__ = "0.37.1"
+__version__ = "0.37.2"