Skip to content

Commit c154ecf

Browse files
committedNov 3, 2021
Bump version to 5.10.0
1 parent 7a13f31 commit c154ecf

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed
 

‎docs/configuration/pre-commit.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,18 +9,18 @@ To use isort's official pre-commit integration add the following config:
99

1010
```yaml
1111
- repo: https://github.com/pycqa/isort
12-
rev: 5.9.3
12+
rev: 5.10.0
1313
hooks:
1414
- id: isort
1515
name: isort (python)
1616
```
1717
18-
under the `repos` section of your projects `.pre-commit-config.yaml` file. Optionally if you want to have different hooks
18+
under the `repos` section of your projects `.pre-commit-config.yaml` file. Optionally if you want to have different hooks
1919
over different file types (ex: python vs cython vs pyi) you can do so with the following config:
2020

2121
```yaml
2222
- repo: https://github.com/pycqa/isort
23-
rev: 5.9.3
23+
rev: 5.10.0
2424
hooks:
2525
- id: isort
2626
name: isort (python)

‎isort/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "5.9.3"
1+
__version__ = "5.10.0"

‎pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ line-length = 100
33

44
[tool.poetry]
55
name = "isort"
6-
version = "5.9.3"
6+
version = "5.10.0"
77
description = "A Python utility / library to sort Python imports."
88
authors = ["Timothy Crosley <timothy.crosley@gmail.com>"]
99
license = "MIT"

0 commit comments

Comments
 (0)
Please sign in to comment.