Updated version number for release.

This commit is contained in:
David Sauve 2010-12-20 11:45:31 -08:00
parent 29ae7f7672
commit 4cdd01f47f
3 changed files with 20 additions and 2 deletions

View File

@ -1,3 +1,21 @@
xapian-haystack-1.1.5BETA
=========================
Tagged on December 20, 2010 by David Sauve <dsauve@trapeze.com>
Code Changes
------------
* Merged `field_weights` branch to add support for field weights for Haystack 1.1
Known Issues
------------
* `SearchBackend.search` with `highlight=True` converts terms to lowercase in result content.
* __in filter combined with punctuation drops valid results
* Spelling suggestions not programatically useful
* `more_like_this` slow on large database
* * *
xapian-haystack-1.1.4BETA
=========================

View File

@ -6,7 +6,7 @@ def read(fname):
setup(
name='xapian-haystack',
version='1.1.4beta',
version='1.1.5beta',
description="A Xapian backend for Haystack",
long_description=read('README.rst'),
classifiers=[

View File

@ -1,7 +1,7 @@
# Copyright (C) 2009-2010 David Sauve, Trapeze. All rights reserved.
__author__ = 'David Sauve'
__version__ = (1, 1, 4, 'alpha')
__version__ = (1, 1, 5, 'beta')
import time
import datetime