Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: PyCQA/isort
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 5.11.4
Choose a base ref
...
head repository: PyCQA/isort
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 5.11.5
Choose a head ref
  • 4 commits
  • 5 files changed
  • 2 contributors

Commits on Jan 30, 2023

  1. fix: poetry pip-shims extras dependency

    With poetry-core>=1.5.0, the dependencies in extras must be present in the main dependency group.
    jooola authored and timothycrosley committed Jan 30, 2023
    Copy the full SHA
    b3d3570 View commit details
  2. Copy the full SHA
    de1c055 View commit details
  3. Fix hotfix-5.11.5

    timothycrosley committed Jan 30, 2023
    Copy the full SHA
    8f2f0f1 View commit details
  4. Fix __version__

    timothycrosley committed Jan 30, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6dfb853 View commit details
Showing with 263 additions and 261 deletions.
  1. +1 −0 .github/workflows/release.yml
  2. +3 −0 CHANGELOG.md
  3. +1 −1 isort/_version.py
  4. +255 −257 poetry.lock
  5. +3 −3 pyproject.toml
1 change: 1 addition & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -5,6 +5,7 @@ name: Release
push:
branches:
- main
- hotfix-5.11.5

jobs:
release:
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -4,6 +4,9 @@ Changelog
NOTE: isort follows the [semver](https://semver.org/) versioning standard.
Find out more about isort's release policy [here](https://pycqa.github.io/isort/docs/major_releases/release_policy).

### 5.11.5 January 30 2023 [hotfix]
- Fixed incompatiblity with latest poetry version

### 5.11.4 December 21 2022

- Fixed #2038 (again): stop installing documentation files to top-level site-packages (#2057) @mgorny
2 changes: 1 addition & 1 deletion isort/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "5.11.4"
__version__ = "5.11.5"
Loading