bump for 0.2.1
This commit is contained in:
parent
0863c41293
commit
60aedff443
5 changed files with 18 additions and 2 deletions
14
CHANGELOG
Normal file
14
CHANGELOG
Normal file
|
@ -0,0 +1,14 @@
|
|||
0.2.1 - December 9 2009
|
||||
=======================
|
||||
- disallow submission of empty ideas
|
||||
- fix a packaging bug
|
||||
|
||||
0.2.0 - August 25 2009
|
||||
======================
|
||||
- rewrite for Sunlight Labs website
|
||||
- reduced a few extra queries
|
||||
- integrate with django-gatekeeper if installed
|
||||
|
||||
0.1.0 - May 27 2009
|
||||
=====
|
||||
- initial working release, focused on subsites
|
|
@ -1,4 +1,5 @@
|
|||
include LICENSE
|
||||
include CHANGELOG
|
||||
include README.rst
|
||||
include *.py
|
||||
recursive-include brainstorm/templates *
|
||||
|
|
|
@ -4,7 +4,7 @@ django-brainstorm
|
|||
|
||||
Django app for creating a site with multiple areas to brainstorm ideas.
|
||||
|
||||
This app powers http://feedback.sunlightfoundation.com/hackathon/ and http://feedback.sunlightfoundation.com/oogl/ and makes it easy to create any number of these 'subsites.'
|
||||
This app powers http://sunlightlabs.com/ideas/ and other similar sites.
|
||||
|
||||
django-brainstorm is a project of Sunlight Labs (c) 2009.
|
||||
Written by James Turk <jturk@sunlightfoundation.com>.
|
||||
|
|
|
@ -0,0 +1 @@
|
|||
__version__ = '0.2.1'
|
2
setup.py
2
setup.py
|
@ -4,7 +4,7 @@ long_description = open('README.rst').read()
|
|||
|
||||
setup(
|
||||
name='django-brainstorm',
|
||||
version="0.2.0",
|
||||
version="0.2.1",
|
||||
package_dir={'brainstorm': 'brainstorm'},
|
||||
packages=['brainstorm'],
|
||||
package_data={'brainstorm': ['templates/brainstorm/*.html']},
|
||||
|
|
Loading…
Reference in a new issue