From 643bb5752d0bc50607ed29523002ae484f513989 Mon Sep 17 00:00:00 2001 From: Joshua Fehler Date: Fri, 31 May 2019 15:34:28 -0400 Subject: [PATCH] Bump version to 0.0.2 --- CHANGELOG.md | 3 ++- flake8_multiline_containers.py | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 85a8f92..ef5c75c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,7 +1,8 @@ # Changelog All notable changes to this project will be documented in this file. -## [0.0.2] - 2019-05-27 +## [0.0.2] - 2019-05-31 ### Fixed - Handle situations where there are uneven numbers of opening and closing characters on the same line +- Ensure opening and closing characters inside strings are ignored diff --git a/flake8_multiline_containers.py b/flake8_multiline_containers.py index 6067758..3949538 100644 --- a/flake8_multiline_containers.py +++ b/flake8_multiline_containers.py @@ -30,7 +30,7 @@ class MultilineContainers: """ name = 'flake8_multiline_containers' - version = '0.0.1' + version = '0.0.2' tree = attr.ib(default=None) filename = attr.ib(default="(none)")