diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index f68e79c..73b36e1 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -2,7 +2,7 @@ exclude: "vendor/" repos: - repo: https://github.com/hadialqattan/pycln - rev: v2.1.5 # Possible releases: https://github.com/hadialqattan/pycln/releases + rev: v2.1.6 # Possible releases: https://github.com/hadialqattan/pycln/releases hooks: - id: pycln args: [--config=pyproject.toml] diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 06306cc..ee6f5af 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -10,6 +10,8 @@ this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +## [2.1.7] - 2023-07-27 + ### Fixed - [`typing/collections.abc.Callable` function parameters types (`Callable[['param1_type'], ...]`) were not considered/analysed by Pycln by @hadialqattan](https://github.com/hadialqattan/pycln/pull/211) diff --git a/docs/README.md b/docs/README.md index 5926b28..d3af93a 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1280,7 +1280,7 @@ finally: ```yaml - repo: https://github.com/hadialqattan/pycln - rev: v2.1.6 # Possible releases: https://github.com/hadialqattan/pycln/releases + rev: v2.1.7 # Possible releases: https://github.com/hadialqattan/pycln/releases hooks: - id: pycln args: [--config=pyproject.toml] diff --git a/docs/_coverpage.md b/docs/_coverpage.md index b972e00..592c387 100644 --- a/docs/_coverpage.md +++ b/docs/_coverpage.md @@ -4,7 +4,7 @@ -# Pycln 2.1.6 +# Pycln 2.1.7 > A formatter for finding and removing unused import statements. diff --git a/pyproject.toml b/pyproject.toml index 6c0fc2f..9adc143 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pycln" -version = "2.1.6" +version = "2.1.7" description = "A formatter for finding and removing unused import statements." authors = ["Hadi Alqattan "] homepage = "https://hadialqattan.github.io/pycln"