Merge pull request #2210 from PyCQA/version/5.13.1

Prepare version 5.13.1
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2309eac..83f0fba 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.1 December 11 2023
+
+   - Fixed integration tests (#2208) @bp72
+   - Fixed normalizing imports from more than one level of parent modules (issue/2152) (#2191) @bp72
+   - Remove optional dependencies without extras (#2207) @staticdev
+
 ### 5.13.0 December 9 2023
 
   - Cleanup deprecated extras (#2089) @staticdev
diff --git a/docs/configuration/pre-commit.md b/docs/configuration/pre-commit.md
index 28e1b48..8564041 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.0
+    rev: 5.13.1
     hooks:
       - id: isort
         name: isort (python)
@@ -20,7 +20,7 @@
 
 ```yaml
   - repo: https://github.com/pycqa/isort
-    rev: 5.13.0
+    rev: 5.13.1
     hooks:
       - id: isort
         name: isort (python)
diff --git a/pyproject.toml b/pyproject.toml
index 11e229a..aa2e12c 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -3,7 +3,7 @@
 
 [tool.poetry]
 name = "isort"
-version = "5.13.0"
+version = "5.13.1"
 description = "A Python utility / library to sort Python imports."
 authors = ["Timothy Crosley <timothy.crosley@gmail.com>"]
 license = "MIT"