Skip to content

Commit

Permalink
Bump version to 0.2.0 and quality to beta now that there are proper t…
Browse files Browse the repository at this point in the history
…ests.
  • Loading branch information
mattiaslinnap committed Aug 6, 2017
1 parent 9869eb1 commit d574755
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion partial_index/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Provide a nicer error message than failing to import models.Index.

VERSION = (0, 1, 1)
VERSION = (0, 2, 0)
__version__ = '.'.join(str(v) for v in VERSION)


Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,17 @@
setup(
name='django-partial-index',
packages=['partial_index'],
version='0.1.1',
version='0.2.0',
description='PostgreSQL partial indexes for Django',
long_description=open('README.md').read(),
author='Mattias Linnap',
author_email='[email protected]',
url='https://github.com/mattiaslinnap/django-partial-index',
download_url='https://github.com/mattiaslinnap/django-partial-index/archive/0.1.0.tar.gz',
download_url='https://github.com/mattiaslinnap/django-partial-index/archive/0.2.0.tar.gz',
license='BSD',
install_requires=[],
classifiers=[
'Development Status :: 3 - Alpha',
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Framework :: Django :: 1.11',
Expand Down

0 comments on commit d574755

Please sign in to comment.