From 9f279aafbd40104b5ae9ee574e115f925956d911 Mon Sep 17 00:00:00 2001 From: Hadi Alqattan Date: Wed, 19 Jul 2023 18:42:32 +0300 Subject: [PATCH] Bump v2.1.6 --- .pre-commit-config.yaml | 2 +- docs/CHANGELOG.md | 2 ++ docs/README.md | 2 +- docs/_coverpage.md | 2 +- pyproject.toml | 2 +- 5 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 3eb4e76..f68e79c 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.4 # Possible releases: https://github.com/hadialqattan/pycln/releases + rev: v2.1.5 # 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 4c6b1eb..7eab0ed 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.6] - 2023-07-19 + ### Fixed - [Implicit imports get missparesed (considered unused) by @hadialqattan](https://github.com/hadialqattan/pycln/pull/207) diff --git a/docs/README.md b/docs/README.md index d103846..5c55c32 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1255,7 +1255,7 @@ finally: ```yaml - 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/_coverpage.md b/docs/_coverpage.md index f75a21b..b972e00 100644 --- a/docs/_coverpage.md +++ b/docs/_coverpage.md @@ -4,7 +4,7 @@ -# Pycln 2.1.5 +# Pycln 2.1.6 > A formatter for finding and removing unused import statements. diff --git a/pyproject.toml b/pyproject.toml index c1c567a..5df8d18 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pycln" -version = "2.1.5" +version = "2.1.6" description = "A formatter for finding and removing unused import statements." authors = ["Hadi Alqattan "] homepage = "https://hadialqattan.github.io/pycln"