Skip to content

Commit

Permalink
Bump version to 0.0.13
Browse files Browse the repository at this point in the history
  • Loading branch information
jsfehler committed Aug 13, 2020
1 parent d1a102f commit e671118
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
# Changelog
All notable changes to this project will be documented in this file.

## [0.0.13] - 2020-08-13

### Fixed

- No false positive when a list comprehension has an equality comparison

## [0.0.12] - 2020-08-13

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion flake8_multiline_containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ class MultilineContainers:
"""Ensure the consistency of multiline dict and list style."""

name = 'flake8_multiline_containers'
version = '0.0.12'
version = '0.0.13'

tree = attr.ib(default=None)
filename = attr.ib(default="(none)")
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def read(filename):
setuptools.setup(
name="flake8-multiline-containers",
license="MIT",
version="0.0.12",
version="0.0.13",
description="Ensure a consistent format for multiline containers.",
long_description=read('README.rst'),
author="Joshua Fehler",
Expand Down

0 comments on commit e671118

Please sign in to comment.