From 6bc143bc5f2f6f91dc0d6cf2583d2a66d469c435 Mon Sep 17 00:00:00 2001 From: jsfehler Date: Sat, 16 Apr 2022 15:59:33 -0400 Subject: [PATCH] Bump version to 0.0.19 (#123) --- CHANGELOG.md | 5 +++++ flake8_multiline_containers.py | 2 +- setup.py | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 8713144..635410d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,11 @@ # Changelog All notable changes to this project will be documented in this file. +## [0.0.19] - 2022-04-16 + +## Fixed +- False positive on multiline conditional expressions + ## [0.0.18] - 2021-03-25 ## Fixed diff --git a/flake8_multiline_containers.py b/flake8_multiline_containers.py index 908ee7e..e96b0b9 100644 --- a/flake8_multiline_containers.py +++ b/flake8_multiline_containers.py @@ -53,7 +53,7 @@ class MultilineContainers: """Ensure the consistency of multiline dict and list style.""" name = 'flake8_multiline_containers' - version = '0.0.18' + version = '0.0.19' tree = attr.ib(default=None) filename = attr.ib(default="(none)") diff --git a/setup.py b/setup.py index 5f747a6..52bcb2c 100644 --- a/setup.py +++ b/setup.py @@ -12,7 +12,7 @@ def read(filename): setuptools.setup( name="flake8-multiline-containers", license="MIT", - version="0.0.18", + version="0.0.19", description="Ensure a consistent format for multiline containers.", long_description=read('README.rst'), author="Joshua Fehler",