From e15df2ee59593704ef85262ee22aeb447aeb3b20 Mon Sep 17 00:00:00 2001 From: Hadi Alqattan Date: Sat, 14 Oct 2023 21:22:38 +0300 Subject: [PATCH] Bump v2.3.0 --- .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 b5b0249..f0b9fde 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.2.1 # Possible releases: https://github.com/hadialqattan/pycln/releases + rev: v2.2.2 # 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 4273e4c..a80059c 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.3.0] - 2023-10-14 + ### Changed - [Drop distutils lib by @hadialqattan](https://github.com/hadialqattan/pycln/pull/220) diff --git a/docs/README.md b/docs/README.md index 22d172e..509375a 100644 --- a/docs/README.md +++ b/docs/README.md @@ -1280,7 +1280,7 @@ finally: ```yaml - repo: https://github.com/hadialqattan/pycln - rev: v2.2.2 # Possible releases: https://github.com/hadialqattan/pycln/releases + rev: v2.3.0 # 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 df902c2..181d5cc 100644 --- a/docs/_coverpage.md +++ b/docs/_coverpage.md @@ -4,7 +4,7 @@ -# Pycln 2.2.2 +# Pycln 2.3.0 > A formatter for finding and removing unused import statements. diff --git a/pyproject.toml b/pyproject.toml index c56ed97..7ef836b 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pycln" -version = "2.2.2" +version = "2.3.0" description = "A formatter for finding and removing unused import statements." authors = ["Hadi Alqattan "] homepage = "https://hadialqattan.github.io/pycln"