diff --git a/CHANGELOG b/CHANGELOG index 97f8ef68e..72cf0ac3b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,11 @@ +2.2.0 + + - #318: Remove extra spaces rendered in choices. + - #438: Hide autocomplete on scroll in Firefox because it bugs (temp fix). + - #432: New bootstrap_modal test_app by @lucky-user. + - #118: Extracted JS into a standalone jquery-plugin: + https://github.com/yourlabs/jquery-autocomplete-light + 2.2.0rc8 - #408: Django admin's new edit link was implemented in such a way that diff --git a/autocomplete_light/__init__.py b/autocomplete_light/__init__.py index 44cb4325d..6f44096da 100644 --- a/autocomplete_light/__init__.py +++ b/autocomplete_light/__init__.py @@ -11,4 +11,4 @@ default_app_config = 'autocomplete_light.apps.AutocompleteLightConfig' -__version__ = (2, 2, 0, 'rc8') +__version__ = (2, 2, 0) diff --git a/docs/source/conf.py b/docs/source/conf.py index c8a376270..cfe189919 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -76,7 +76,7 @@ # The short X.Y version. version = '2.2' # The full version, including alpha/beta/rc tags. -release = '2.2.0rc8' +release = '2.2.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 993c7bc9e..88361e3f7 100644 --- a/setup.py +++ b/setup.py @@ -42,7 +42,7 @@ def run(self): setup( name='django-autocomplete-light', - version='2.2.0rc8', + version='2.2.0', description='Fresh autocompletes for Django', author='James Pic', author_email='jamespic@gmail.com',