diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 896c4f6..a1c4c30 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -1,6 +1,6 @@ repos: - repo: https://github.com/hadialqattan/pycln - rev: v1.2.3 # Possible releases: https://github.com/hadialqattan/pycln/releases + rev: v1.2.4 # 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 06f8ab9..033201f 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] +## [1.2.5] - 2022-03-12 + ### Fixed - [Pycln does not cleanup `finally` blocks' bodies from useless `pass` statements by @hadialqattan](https://github.com/hadialqattan/pycln/pull/114) diff --git a/docs/README.md b/docs/README.md index 5c9769f..521bf55 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1073,7 +1073,7 @@ finally: ```yaml - repo: https://github.com/hadialqattan/pycln - rev: v1.2.4 # Possible releases: https://github.com/hadialqattan/pycln/releases + rev: v1.2.5 # 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 bdb62a1..3ec3612 100644 --- a/docs/_coverpage.md +++ b/docs/_coverpage.md @@ -4,7 +4,7 @@ -# Pycln 1.2.4 +# Pycln 1.2.5 > A formatter for finding and removing unused import statements. diff --git a/pyproject.toml b/pyproject.toml index 7e1da09..20864fe 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pycln" -version = "1.2.4" +version = "1.2.5" description = "A formatter for finding and removing unused import statements." authors = ["Hadi Alqattan "] homepage = "https://hadialqattan.github.io/pycln"