Skip to content

Commit 2ab4ccd

Browse files
committed
Bump version
1 parent b1334c3 commit 2ab4ccd

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

ajax_select/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
"""JQuery-Ajax Autocomplete fields for Django Forms."""
2-
__version__ = "1.6.0"
2+
__version__ = "1.6.1"
33
__author__ = "crucialfelix"
44
__contact__ = "[email protected]"
55
__homepage__ = "https://github.com/crucialfelix/django-ajax-selects/"

setup.py

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -9,23 +9,23 @@
99

1010
setup(
1111
name='django-ajax-selects',
12-
version='1.6.0',
12+
version='1.6.1',
1313
description='Edit ForeignKey, ManyToManyField and CharField in Django Admin using jQuery UI AutoComplete.',
1414
author='Chris Sattinger',
1515
author_email='[email protected]',
1616
url='https://github.com/crucialfelix/django-ajax-selects/',
1717
packages=['ajax_select'],
1818
package_data={'ajax_select':
19-
[
20-
'*.py',
21-
'*.txt',
22-
'*.md',
23-
'static/ajax_select/css/*',
24-
'static/ajax_select/images/*',
25-
'static/ajax_select/js/*',
26-
'templates/ajax_select/*.html'
27-
]
28-
},
19+
[
20+
'*.py',
21+
'*.txt',
22+
'*.md',
23+
'static/ajax_select/css/*',
24+
'static/ajax_select/images/*',
25+
'static/ajax_select/js/*',
26+
'templates/ajax_select/*.html'
27+
]
28+
},
2929
include_package_data=True,
3030
zip_safe=False,
3131
license="MIT",

0 commit comments

Comments
 (0)