From 60aedff443fa039100b8b1a64a694f14771abb39 Mon Sep 17 00:00:00 2001 From: James Turk Date: Wed, 9 Dec 2009 14:22:56 -0500 Subject: [PATCH] bump for 0.2.1 --- CHANGELOG | 14 ++++++++++++++ MANIFEST.in | 1 + README.rst | 2 +- brainstorm/__init__.py | 1 + setup.py | 2 +- 5 files changed, 18 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG diff --git a/CHANGELOG b/CHANGELOG new file mode 100644 index 0000000..57af635 --- /dev/null +++ b/CHANGELOG @@ -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 diff --git a/MANIFEST.in b/MANIFEST.in index 1406c0f..4f83764 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,4 +1,5 @@ include LICENSE +include CHANGELOG include README.rst include *.py recursive-include brainstorm/templates * diff --git a/README.rst b/README.rst index 906bed9..8c08350 100644 --- a/README.rst +++ b/README.rst @@ -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 . diff --git a/brainstorm/__init__.py b/brainstorm/__init__.py index e69de29..fc79d63 100644 --- a/brainstorm/__init__.py +++ b/brainstorm/__init__.py @@ -0,0 +1 @@ +__version__ = '0.2.1' diff --git a/setup.py b/setup.py index 22ef670..131ae1a 100644 --- a/setup.py +++ b/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']},