Merge pull request #2214 from PyCQA/version/5.13.2

Prepare version 5.13.2
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 83f0fba..065e5a5 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -4,6 +4,12 @@
 NOTE: isort follows the [semver](https://semver.org/) versioning standard.
 Find out more about isort's release policy [here](https://pycqa.github.io/isort/docs/major_releases/release_policy).
 
+### 5.13.2 December 13 2023
+
+   - Apply the bracket fix from issue #471 only for use_parentheses=True (#2184) @bp72
+   - Confine pre-commit to stages (#2213) @davidculley
+   - Fixed colors extras (#2212) @staticdev
+
 ### 5.13.1 December 11 2023
 
    - Fixed integration tests (#2208) @bp72
diff --git a/docs/configuration/pre-commit.md b/docs/configuration/pre-commit.md
index 8564041..f33f291 100644
--- a/docs/configuration/pre-commit.md
+++ b/docs/configuration/pre-commit.md
@@ -9,7 +9,7 @@
 
 ```yaml
   - repo: https://github.com/pycqa/isort
-    rev: 5.13.1
+    rev: 5.13.2
     hooks:
       - id: isort
         name: isort (python)
@@ -20,7 +20,7 @@
 
 ```yaml
   - repo: https://github.com/pycqa/isort
-    rev: 5.13.1
+    rev: 5.13.2
     hooks:
       - id: isort
         name: isort (python)
diff --git a/pyproject.toml b/pyproject.toml
index 9b2e6f2..f4d3ecd 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,7 +3,7 @@
 
 [tool.poetry]
 name = "isort"
-version = "5.13.1"
+version = "5.13.2"
 description = "A Python utility / library to sort Python imports."
 authors = ["Timothy Crosley <timothy.crosley@gmail.com>"]
 license = "MIT"