Skip to content

Commit

Permalink
v0.2.0 bump
Browse files Browse the repository at this point in the history
  • Loading branch information
esteban committed Apr 1, 2015
1 parent 8e22eeb commit 7f85df0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ Visit (http://127.0.0.1:8000/)
## Updating

> *Upgrading from v0.1.x?* make sure you change `url(r'^', include(urls, namespace="spirit", app_name="spirit")),` to `url(r'^', include('spirit.urls')),` in your *urls.py*.
> The way settings used to import your local_settings.py has changed, so check that out.
Run:

pip install -r requirements.txt
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

setup(
name='django-spirit',
version='0.1.3',
version='0.2.0',
description='Spirit is a Python based forum powered by Django.',
author='Esteban Castro Borsani',
author_email='[email protected]',
Expand Down
2 changes: 1 addition & 1 deletion spirit/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

from __future__ import unicode_literals

__version__ = '0.1.3'
__version__ = '0.2.0'

default_app_config = 'spirit.apps.SpiritConfig'

0 comments on commit 7f85df0

Please sign in to comment.