Updating for 1.1.0 release.

This commit is contained in:
Dave Hall 2012-04-05 11:43:54 +01:00
parent ffe9365e70
commit 95813770a5
2 changed files with 6 additions and 3 deletions

View file

@ -2,11 +2,14 @@ django-watson changelog
==========================
1.1.0 - UNRELEASED
1.1.0 - 05/04/2012
------------------
* Django 1.4 admin compatibility.
* Improved efficiency of large search index updates using update and bulk_create (when available).
* Added in SearchContextMiddleware.
* Removed potentially unreliable automatic wrapping of entire request in a search context.
* Improved escaping of PostgreSQL query characters.
1.0.2 - 07/03/2012

View file

@ -3,12 +3,12 @@ from distutils.core import setup
setup(
name = "django-watson",
version = "1.0.2",
version = "1.1.0",
description = "Full-text multi-table search application for Django. Easy to install and use, with good performance.",
author = "Dave Hall",
author_email = "dave@etianen.com",
url = "http://github.com/etianen/django-watson",
download_url = "http://github.com/downloads/etianen/django-watson/django-watson-1.0.2.tar.gz",
download_url = "http://github.com/downloads/etianen/django-watson/django-watson-1.1.0.tar.gz",
zip_safe = False,
packages = [
"watson",