diff --git a/CHANGELOG.md b/CHANGELOG.md index b8910f2..700e16f 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.9] - 2020-03-09 + +### Fixed +- Only check for function calls when checking lunula brackets + ## [0.0.8] - 2020-03-06 ### Fixed diff --git a/flake8_multiline_containers.py b/flake8_multiline_containers.py index 431fb1e..16638f8 100644 --- a/flake8_multiline_containers.py +++ b/flake8_multiline_containers.py @@ -39,7 +39,7 @@ class MultilineContainers: """Ensure the consistency of multiline dict and list style.""" name = 'flake8_multiline_containers' - version = '0.0.7' + version = '0.0.9' tree = attr.ib(default=None) filename = attr.ib(default="(none)") diff --git a/setup.py b/setup.py index 0e9f077..5bc47d1 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.8", + version="0.0.9", description="Ensure a consistent format for multiline containers.", long_description=read('README.rst'), author="Joshua Fehler",