Skip to content

Commit

Permalink
Bump version to 5.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
timothycrosley committed Nov 3, 2021
1 parent 7a13f31 commit c154ecf
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions docs/configuration/pre-commit.md
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion isort/_version.py
@@ -1 +1 @@
__version__ = "5.9.3"
__version__ = "5.10.0"
2 changes: 1 addition & 1 deletion pyproject.toml
Expand Up @@ -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 <timothy.crosley@gmail.com>"]
license = "MIT"
Expand Down

0 comments on commit c154ecf

Please sign in to comment.