Skip to content
Snippets Groups Projects
Commit 1db5c863 authored by Ian Cordasco's avatar Ian Cordasco
Browse files

Prepare for v0.3.0 release

parent 616aeae4
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -69,6 +69,15 @@ These error codes are emitted:
Changes
-------
 
0.3.0 - 2015-06-14
``````````````````
* Relaxed N806 checking for use with namedtuples
* Add ``--ignore-names`` which allows the user to specify a list of names to
ignore. By default this includes ``setUp``, ``tearDown``, ``setUpClass``,
and ``tearDownClass``.
0.2.2 - 2014-04-19
``````````````````
* Do not require ``setuptools`` in setup.py. It works around an issue
Loading
Loading
Loading
Loading
@@ -10,7 +10,7 @@ try:
except ImportError:
from flake8.util import ast, iter_child_nodes
 
__version__ = '0.2.2'
__version__ = '0.3.0'
 
LOWERCASE_REGEX = re.compile(r'[_a-z][_a-z0-9]*$')
UPPERCASE_REGEX = re.compile(r'[_A-Z][_A-Z0-9]*$')
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment