diff options
Diffstat (limited to 'docs')
-rw-r--r-- | docs/conf.py | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/docs/conf.py b/docs/conf.py index 331d13144..9d2cf98f9 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -58,10 +58,17 @@ copyright = u'2011, pyLoad Team' # |version| and |release|, also used in various other places throughout the # built documents. # -# The short X.Y version. -version = '0.4' # The full version, including alpha/beta/rc tags. -release = '0.4.8' +""" [[[cog +from pavement import options +v = options.version.split(".") +cog.outl("version = '%s'" % ".".join(v[:2])) +cog.outl("release = '%s'" % ".".join(v)) +]]]""" +version = '0.4' +release = '0.4.9' +# [[[end]]] + # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |