From 5a52ca664aed78b1dc1825142e36dbe6c15c2c13 Mon Sep 17 00:00:00 2001 From: Stephen Burrows Date: Sat, 27 Aug 2011 16:38:48 -0700 Subject: [PATCH] Incremented version number to 0.9.1rc and cleaned up README a tiny bit. --- README | 4 ++-- README.markdown | 4 ++-- docs/conf.py | 2 +- philo/__init__.py | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README b/README index 69c0c52..fc6c8a9 100644 --- a/README +++ b/README @@ -4,10 +4,10 @@ Prerequisites: * Python 2.5.4+ * Django 1.3+ * django-mptt e734079+ - * (philo.contrib.penfield) django-taggit 0.9.3+ * (Optional) django-grappelli 2.0+ * (Optional) south 0.7.2+ - * (Optional) recaptcha-django r6 + * (philo.contrib.penfield) django-taggit 0.9.3+ + * (philo.contrib.waldo) recaptcha-django r6 ==== Using philo diff --git a/README.markdown b/README.markdown index c6a198a..d902913 100644 --- a/README.markdown +++ b/README.markdown @@ -5,10 +5,10 @@ Prerequisites: * [Python 2.5.4+ <http://www.python.org>](http://www.python.org/) * [Django 1.3+ <http://www.djangoproject.com/>](http://www.djangoproject.com/) * [django-mptt e734079+ <https://github.com/django-mptt/django-mptt/>](https://github.com/django-mptt/django-mptt/) - * (philo.contrib.penfield) [django-taggit 0.9.3+ <https://github.com/alex/django-taggit>](https://github.com/alex/django-taggit) * (Optional) [django-grappelli 2.0+ <http://code.google.com/p/django-grappelli/>](http://code.google.com/p/django-grappelli/) * (Optional) [south 0.7.2+ <http://south.aeracode.org/)](http://south.aeracode.org/) - * (Optional) [recaptcha-django r6 <http://code.google.com/p/recaptcha-django/>](http://code.google.com/p/recaptcha-django/) + * (philo.contrib.penfield) [django-taggit 0.9.3+ <https://github.com/alex/django-taggit>](https://github.com/alex/django-taggit) + * (philo.contrib.waldo) [recaptcha-django r6 <http://code.google.com/p/recaptcha-django/>](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). diff --git a/docs/conf.py b/docs/conf.py index 4e6a624..2e703d0 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -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 diff --git a/philo/__init__.py b/philo/__init__.py index c07c373..2ad4062 100644 --- a/philo/__init__.py +++ b/philo/__init__.py @@ -1 +1 @@ -VERSION = (0, 9) +VERSION = (0, 9, "1rc") -- 2.20.1