From 8b59ab55e9c64258f793b2224edefed927254fc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Hakan=20=C3=87elik?= Date: Sat, 26 Dec 2020 21:17:57 +0300 Subject: [PATCH] v0.7.0 --- docs/CHANGELOG.md | 2 +- docs/_coverpage.md | 2 +- unimport/constants.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/CHANGELOG.md b/docs/CHANGELOG.md index 958f09cf..402eebce 100644 --- a/docs/CHANGELOG.md +++ b/docs/CHANGELOG.md @@ -2,7 +2,7 @@ All notable changes to this project will be documented in this file. -## Unrelased - ./././ +## [0.7.0] - 26/December/2020 - [%15 performance increase & remove show-error flag by @hakancelik96](https://github.com/hakancelik96/unimport/pull/159) diff --git a/docs/_coverpage.md b/docs/_coverpage.md index 04ec2fd1..5a2a76f7 100644 --- a/docs/_coverpage.md +++ b/docs/_coverpage.md @@ -1,6 +1,6 @@ -# ![logo](_media/icon.png ":size=30%") 0.6.8 +# ![logo](_media/icon.png ":size=30%") 0.7.0 > A linter, formatter for finding and removing unused import statements. diff --git a/unimport/constants.py b/unimport/constants.py index 7f2a048d..7f949471 100644 --- a/unimport/constants.py +++ b/unimport/constants.py @@ -31,7 +31,7 @@ DESCRIPTION = ( "A linter, formatter for finding and removing unused import statements." ) -VERSION = "0.6.8" +VERSION = "0.7.0" PY38_PLUS = sys.version_info >= (3, 8)