diff --git a/CHANGELOG.markdown b/CHANGELOG.markdown index 6a5607d..0816d8d 100644 --- a/CHANGELOG.markdown +++ b/CHANGELOG.markdown @@ -1,5 +1,16 @@ django-watson changelog -========================== +======================= + + +1.1.6 - 01/04/2015 +------------------ + +* Added listwatson management command (@philippeowagner) +* Added _format_query() hook to MySQL search backend (@alexey-grom) +* Adding in Django 1.7 migrations. +* Ability to specify a search backend name for the filter() and search() methods (@amin-pylot) +* Bugfixes and tweaks (@thedrow, @dessibelle, @carltongibson, @philippeowagner) + 1.1.5 - 08/11/2014 diff --git a/setup.py b/setup.py index bfd6df6..591d786 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from distutils.core import setup setup( name = "django-watson", - version = "1.1.5", + version = "1.1.6", description = "Full-text multi-table search application for Django. Easy to install and use, with good performance.", long_description = open(os.path.join(os.path.dirname(__file__), "README.markdown")).read(), author = "Dave Hall",