From b0682a803d2e4f27ac1829e5ea974e27898390ca Mon Sep 17 00:00:00 2001 From: Frank Hoffmann <15r10nk-git@polarbit.de> Date: Wed, 29 Nov 2023 21:34:57 +0100 Subject: [PATCH] =?UTF-8?q?bump:=20version=200.6.0=20=E2=86=92=200.6.1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CHANGELOG.md | 14 ++++++++++++++ pyproject.toml | 2 +- pysource_minimize/__init__.py | 2 +- 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f158297..82ea9d2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,17 @@ +## v0.6.1 (2023-11-29) + +### Fix + +- minimize every type comment +- **3.8**: support for Index and ExtSlice +- correct minimization of FormattedValue +- ignore code in async inner scopes when we try to minimize a function to its body +- correct minimization of optional nodes + +### Refactor + +- extracted parse function + ## v0.6.0 (2023-11-12) ### Feat diff --git a/pyproject.toml b/pyproject.toml index c1e5024..6569463 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "pysource-minimize" -version = "0.6.0" +version = "0.6.1" description = "minimize python source code" authors = ["Frank Hoffmann"] license = "MIT" diff --git a/pysource_minimize/__init__.py b/pysource_minimize/__init__.py index f9a886a..82e0011 100644 --- a/pysource_minimize/__init__.py +++ b/pysource_minimize/__init__.py @@ -5,4 +5,4 @@ __all__ = ("minimize", "StopMinimization") -version = "0.6.0" +version = "0.6.1"