Skip to content

Commit 6987cb7

Browse files
committed
3.0.1
1 parent 1bf339b commit 6987cb7

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

ChangeLog

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
* 3.0.1 - Apr 06 2017
2+
- Fix MANIFEST.in to include ChangeLog properly and also include the unit tests
3+
14
* 3.0.0 - Apr 03 2017
25
- Fix __iadd__ ( += )to not make a copy, but to just inline update the list.
36
Previously it was updating the list inline, so references and such

QueryableList/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525

2626
__all__ = ('FILTER_TYPES', 'FILTER_METHOD_OR', 'FILTER_METHOD_OR', 'FILTER_METHODS', 'QueryableListObjs', 'QueryableListDicts', 'QueryableListBase', 'QueryableListMixed', 'QueryBuilder')
2727

28-
__version__ = '3.0.0'
29-
__version_tuple__ = (3, 0, 0)
28+
__version__ = '3.0.1'
29+
__version_tuple__ = (3, 0, 1)
3030

3131

3232
from .constants import FILTER_TYPES, FILTER_METHODS, FILTER_METHOD_OR, FILTER_METHOD_OR

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
long_description = summary
2828

2929
setup(name='QueryableList',
30-
version='3.0.0',
30+
version='3.0.1',
3131
packages=['QueryableList'],
3232
author='Tim Savannah',
3333
author_email='kata198@gmail.com',

0 commit comments

Comments
 (0)