From 51c520460eb086fae977482145ea61f2222e6284 Mon Sep 17 00:00:00 2001 From: Hakan Celik Date: Wed, 1 Feb 2023 22:16:31 +0300 Subject: [PATCH] v0.13.0 --- .pre-commit-config.yaml | 2 +- docs/CHANGELOG.md | 6 +++++- src/unimport/__init__.py | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml index 6ee1f8d0..2a4803aa 100644 --- a/.pre-commit-config.yaml +++ b/.pre-commit-config.yaml @@ -12,7 +12,7 @@ repos: - id: isort - repo: https://github.com/hakancelikdev/unimport - rev: 0.12.3 + rev: 0.13.0 hooks: - id: unimport args: diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 314b5305..1c328504 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -4,12 +4,16 @@ All notable changes to this project will be documented in this file. ## [Unreleased] - YYYY-MM-DD -## [0.13.0] - YYYY-MM-DD +## [0.13.0] - 2023-02-01 ### Changed - The remove command is set to the default behavior. #273 +### Fixes + +- pre-commit autoupdate yields a weird result #275 + ## [0.12.3] - 2022-12-04 ### Added diff --git a/src/unimport/__init__.py b/src/unimport/__init__.py index 80296cba..887c21d4 100644 --- a/src/unimport/__init__.py +++ b/src/unimport/__init__.py @@ -1,2 +1,2 @@ -__version__ = "0.12.3" +__version__ = "0.13.0" __description__ = "A linter, formatter for finding and removing unused import statements."