Skip to content

Commit

Permalink
Bumped to v1.2.2!
Browse files Browse the repository at this point in the history
  • Loading branch information
toastdriven committed May 19, 2011
1 parent 80e081e commit 65278c7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
2 changes: 1 addition & 1 deletion docs/conf.py
Expand Up @@ -47,7 +47,7 @@
# The short X.Y version.
version = '1.2'
# The full version, including alpha/beta/rc tags.
release = '1.2.1'
release = '1.2.2'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion haystack/__init__.py
Expand Up @@ -11,7 +11,7 @@


__author__ = 'Daniel Lindsley'
__version__ = (1, 2, 1)
__version__ = (1, 2, 2)
__all__ = ['backend']


Expand Down
22 changes: 12 additions & 10 deletions setup.py
Expand Up @@ -4,7 +4,7 @@

setup(
name='django-haystack',
version='1.2.1',
version='1.2.2',
description='Pluggable search for Django.',
author='Daniel Lindsley',
author_email='daniel@toastdriven.com',
Expand All @@ -20,12 +20,14 @@
package_data={
'haystack': ['templates/search_configuration/*']
},
classifiers=['Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)
classifiers=[
'Development Status :: 5 - Production/Stable',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
)

0 comments on commit 65278c7

Please sign in to comment.