From aac19f05ced7c8e972e5032c450b1c7aa30f9832 Mon Sep 17 00:00:00 2001 From: Tomer Keren Date: Sat, 27 Mar 2021 12:09:03 +0300 Subject: [PATCH] Version 0.18 - Bugfixes for python 3.8, 3.9 and adapting to the changes to the ast - Fixed crash in flatten-for and range-len when unpacking arguments - Added smell join-literal: warns when using str.join on something that would be more readable as a format string. --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 3a6d008..d6c74dd 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "good_smell" -version = "0.17" +version = "0.18" description = "A linter/refactoring tool to make your code smell better!" authors = ["Tomer Keren "] license = "BSD-3-Clause"