Incremented version number to 0.9.1rc and cleaned up README a tiny bit.
authorStephen Burrows <stephen.r.burrows@gmail.com>
Sat, 27 Aug 2011 23:38:48 +0000 (16:38 -0700)
committerStephen Burrows <stephen.r.burrows@gmail.com>
Sat, 27 Aug 2011 23:38:48 +0000 (16:38 -0700)
README
README.markdown
docs/conf.py
philo/__init__.py

diff --git a/README b/README
index 69c0c52..fc6c8a9 100644 (file)
--- a/README
+++ b/README
@@ -4,10 +4,10 @@ Prerequisites:
        * Python 2.5.4+ <http://www.python.org/>
        * Django 1.3+ <http://www.djangoproject.com/>
        * django-mptt e734079+ <https://github.com/django-mptt/django-mptt/>
-       * (philo.contrib.penfield) django-taggit 0.9.3+ <https://github.com/alex/django-taggit>
        * (Optional) django-grappelli 2.0+ <http://code.google.com/p/django-grappelli/>
        * (Optional) south 0.7.2+ <http://south.aeracode.org/>
-       * (Optional) recaptcha-django r6 <http://code.google.com/p/recaptcha-django/>
+       * (philo.contrib.penfield) django-taggit 0.9.3+ <https://github.com/alex/django-taggit>
+       * (philo.contrib.waldo) recaptcha-django r6 <http://code.google.com/p/recaptcha-django/>
 
 ====
 Using philo
index c6a198a..d902913 100644 (file)
@@ -5,10 +5,10 @@ Prerequisites:
  * [Python 2.5.4+ &lt;http://www.python.org&gt;](http://www.python.org/)
  * [Django 1.3+ &lt;http://www.djangoproject.com/&gt;](http://www.djangoproject.com/)
  * [django-mptt e734079+ &lt;https://github.com/django-mptt/django-mptt/&gt;](https://github.com/django-mptt/django-mptt/)
- * (philo.contrib.penfield) [django-taggit 0.9.3+ &lt;https://github.com/alex/django-taggit&gt;](https://github.com/alex/django-taggit)
  * (Optional) [django-grappelli 2.0+ &lt;http://code.google.com/p/django-grappelli/&gt;](http://code.google.com/p/django-grappelli/)
  * (Optional) [south 0.7.2+ &lt;http://south.aeracode.org/)](http://south.aeracode.org/)
- * (Optional) [recaptcha-django r6 &lt;http://code.google.com/p/recaptcha-django/&gt;](http://code.google.com/p/recaptcha-django/)
+ * (philo.contrib.penfield) [django-taggit 0.9.3+ &lt;https://github.com/alex/django-taggit&gt;](https://github.com/alex/django-taggit)
+ * (philo.contrib.waldo) [recaptcha-django r6 &lt;http://code.google.com/p/recaptcha-django/&gt;](http://code.google.com/p/recaptcha-django/)
 
 To contribute, please visit the [project website](http://project.philocms.org/) and/or make a fork of the git repository on [GitHub](http://github.com/ithinksw/philo) or [Gitorious](http://gitorious
 .org/ithinksw/philo). Feel free to join us on IRC at [irc://irc.oftc.net/#philo](irc://irc.oftc.net/#philo).
index 4e6a624..2e703d0 100644 (file)
@@ -62,7 +62,7 @@ copyright = u'2009-2011, iThink Software'
 #
 # The short X.Y version.
 from philo import VERSION
-version = '%s.%s' % (VERSION[0], VERSION[1])
+version = '.'.join([str(v) for v in VERSION])
 # The full version, including alpha/beta/rc tags.
 release = version
 
index c07c373..2ad4062 100644 (file)
@@ -1 +1 @@
-VERSION = (0, 9)
+VERSION = (0, 9, "1rc")