diff --git a/docs/configuration/pre-commit.md b/docs/configuration/pre-commit.md index 4238483bb..9d8054732 100644 --- a/docs/configuration/pre-commit.md +++ b/docs/configuration/pre-commit.md @@ -9,18 +9,18 @@ To use isort's official pre-commit integration add the following config: ```yaml - repo: https://github.com/pycqa/isort - rev: 5.9.3 + rev: 5.10.0 hooks: - id: isort name: isort (python) ``` -under the `repos` section of your projects `.pre-commit-config.yaml` file. Optionally if you want to have different hooks +under the `repos` section of your projects `.pre-commit-config.yaml` file. Optionally if you want to have different hooks over different file types (ex: python vs cython vs pyi) you can do so with the following config: ```yaml - repo: https://github.com/pycqa/isort - rev: 5.9.3 + rev: 5.10.0 hooks: - id: isort name: isort (python) diff --git a/isort/_version.py b/isort/_version.py index 34de50acb..1b1e67f64 100644 --- a/isort/_version.py +++ b/isort/_version.py @@ -1 +1 @@ -__version__ = "5.9.3" +__version__ = "5.10.0" diff --git a/pyproject.toml b/pyproject.toml index 5fad868f7..76b6d5a62 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ line-length = 100 [tool.poetry] name = "isort" -version = "5.9.3" +version = "5.10.0" description = "A Python utility / library to sort Python imports." authors = ["Timothy Crosley "] license = "MIT"