Skip to content

Commit 9f7e0e5

Browse files
authored
Merge pull request #2204 from PyCQA/version/5.13.0
Prepare version 5.13.0
2 parents 4c3ef5f + 521299c commit 9f7e0e5

File tree

3 files changed

+27
-4
lines changed

3 files changed

+27
-4
lines changed

CHANGELOG.md

+24-1
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,31 @@ Changelog
44
NOTE: isort follows the [semver](https://semver.org/) versioning standard.
55
Find out more about isort's release policy [here](https://pycqa.github.io/isort/docs/major_releases/release_policy).
66

7-
### 5.12.1 [in progress]
7+
### 5.13.0 December 9 2023
8+
9+
- Cleanup deprecated extras (#2089) @staticdev
810
- Fixed #1989: settings lookup when working in stream based mode
11+
- Fixed 80 line length for wemake linter (#2183) @skatromb
12+
- Add support for Python 3.12 (#2175) @hugovk
13+
- Fixed: add newest version to pre-commit docs (#2190) @AzulGarza
14+
- Fixed assertions in test_git_hook (#2196) @mgorny
15+
- Removed check for include_trailing_comma for the Hanging Indent wrap mode (#2192) @bp72
16+
- Use the standard library tomllib on sufficiently new python (#2202) @eli-schwartz
17+
- Update pre-commit.md version number (#2197) @nicobako
18+
- doc: Update black_compatibility.md (#2177) @JSS95
19+
- Fixed safety sept 2023 (#2178) @staticdev
20+
- docs: fix black profile documentation (#2163) @nijel
21+
- Fixed typo: indended -> indented (#2161) @vadimkerr
22+
- Docs(configuration/options.md): fix missing trailing spaces for hard linebreak (#2157) @JoeyTeng
23+
- Update pre-commit.md (#2148) @godiard
24+
- chore: move configurations to pyproject.toml (#2115) @SauravMaheshkar
25+
- Fixed typo in README (#2112) @stefmolin
26+
- Update version in pre-commit setup to avoid installation issue with poetry (#2103) @stefmolin
27+
- Skip .pytype directory by default. (#2098) @manueljacob
28+
- Fixed a tip block styling in the Config Files section (#2097) @Klavionik
29+
- Do not cache configuration files (#1995) @kaste
30+
- Derive settings_path from --filename (#1992) @kaste
31+
- Fixed year of version 5.12.0 in CHANGELOG.md (#2082) @DjLegolas
932

1033
### 5.12.0 January 28 2023
1134

docs/configuration/pre-commit.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ 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.12.0
12+
rev: 5.13.0
1313
hooks:
1414
- id: isort
1515
name: isort (python)
@@ -20,7 +20,7 @@ over different file types (ex: python vs cython vs pyi) you can do so with the f
2020

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

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.12.0"
6+
version = "5.13.0"
77
description = "A Python utility / library to sort Python imports."
88
authors = ["Timothy Crosley <[email protected]>"]
99
license = "MIT"

0 commit comments

Comments
 (0)