diff --git a/README.md b/README.md index 31be14da..531a280d 100644 --- a/README.md +++ b/README.md @@ -269,7 +269,7 @@ With this functionality, you can configure a sidebar input search field with aut }, ``` -The autocomplete field will call a custom api at every keyup event (for strings of length > 3). Such api receives the `text` param in the querystring and should return a json response including the search results in the form: +The autocomplete field will call a custom api at every keyup event. Such api receives the `text` param in the querystring and should return a json response including the search results in the form: ``` { diff --git a/baton/static/baton/app/package-lock.json b/baton/static/baton/app/package-lock.json index 3db6f1af..41015295 100644 --- a/baton/static/baton/app/package-lock.json +++ b/baton/static/baton/app/package-lock.json @@ -1,6 +1,6 @@ { "name": "baton", - "version": "2.1.0", + "version": "2.1.1", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/baton/static/baton/app/package.json b/baton/static/baton/app/package.json index 9ce5f780..def0bcb2 100644 --- a/baton/static/baton/app/package.json +++ b/baton/static/baton/app/package.json @@ -1,6 +1,6 @@ { "name": "baton", - "version": "2.1.0", + "version": "2.1.1", "description": "Django Baton App", "main": "index.js", "scripts": { diff --git a/docs/conf.py b/docs/conf.py index 779e7379..0037728d 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -54,9 +54,9 @@ # built documents. # # The short X.Y version. -version = u'2.1.0' +version = u'2.1.1' # The full version, including alpha/beta/rc tags. -release = u'2.1.0' +release = u'2.1.1' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/configuration.rst b/docs/configuration.rst index e9bc3c6c..fef72b69 100644 --- a/docs/configuration.rst +++ b/docs/configuration.rst @@ -326,7 +326,7 @@ With this functionality, you can configure a sidebar input search field with aut 'url': '/api/path/', }, -The autocomplete field will call a custom api at every keyup event (for strings of length > 3). Such api receives the ``text`` param in the querystring and should return a json response including the search results in the form: :: +The autocomplete field will call a custom api at every keyup event. Such api receives the ``text`` param in the querystring and should return a json response including the search results in the form: :: { length: 2, diff --git a/setup.py b/setup.py index fe0d9c34..b315cb59 100644 --- a/setup.py +++ b/setup.py @@ -11,7 +11,7 @@ setup( name='django-baton', - version='2.1.0', + version='2.1.1', packages=['baton', 'baton.autodiscover', 'baton.templatetags'], include_package_data=True, license='MIT License',