File tree 3 files changed +9
-3
lines changed
3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,12 @@ Changelog
4
4
NOTE: isort follows the [ semver] ( https://semver.org/ ) versioning standard.
5
5
Find out more about isort's release policy [ here] ( https://pycqa.github.io/isort/docs/major_releases/release_policy ) .
6
6
7
+ ### 5.13.1 December 11 2023
8
+
9
+ - Fixed integration tests (#2208 ) @bp72
10
+ - Fixed normalizing imports from more than one level of parent modules (issue/2152) (#2191 ) @bp72
11
+ - Remove optional dependencies without extras (#2207 ) @staticdev
12
+
7
13
### 5.13.0 December 9 2023
8
14
9
15
- Cleanup deprecated extras (#2089 ) @staticdev
Original file line number Diff line number Diff line change @@ -9,7 +9,7 @@ To use isort's official pre-commit integration add the following config:
9
9
10
10
``` yaml
11
11
- repo : https://github.com/pycqa/isort
12
- rev : 5.13.0
12
+ rev : 5.13.1
13
13
hooks :
14
14
- id : isort
15
15
name : isort (python)
@@ -20,7 +20,7 @@ over different file types (ex: python vs cython vs pyi) you can do so with the f
20
20
21
21
` ` ` yaml
22
22
- repo: https://github.com/pycqa/isort
23
- rev: 5.13.0
23
+ rev: 5.13.1
24
24
hooks:
25
25
- id: isort
26
26
name: isort (python)
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ line-length = 100
3
3
4
4
[tool .poetry ]
5
5
name = " isort"
6
- version = " 5.13.0 "
6
+ version = " 5.13.1 "
7
7
description = " A Python utility / library to sort Python imports."
8
8
authors = [
" Timothy Crosley <[email protected] >" ]
9
9
license = " MIT"
You can’t perform that action at this time.
0 commit comments