diff options
author | Sebastian Thiel <byronimo@gmail.com> | 2010-07-09 12:35:44 +0200 |
---|---|---|
committer | Sebastian Thiel <byronimo@gmail.com> | 2010-07-09 12:35:44 +0200 |
commit | 258403da9c2a087b10082d26466528fce3de38d4 (patch) | |
tree | e324849e6a398a9d25bc07dbc4551f4db0a164e1 /doc/source/conf.py | |
parent | 08457a7a6b6ad4f518fad0d5bca094a2b5b38fbe (diff) | |
download | gitpython-258403da9c2a087b10082d26466528fce3de38d4.tar.gz |
bumped verison to 0.3.0 beta20.3.0-beta2
docs: added changelog, which moved from the CHANGES file into sphinx
Diffstat (limited to 'doc/source/conf.py')
-rw-r--r-- | doc/source/conf.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/source/conf.py b/doc/source/conf.py index 21304eaa..e80bd0aa 100644 --- a/doc/source/conf.py +++ b/doc/source/conf.py @@ -50,9 +50,10 @@ copyright = u'Copyright (C) 2008, 2009 Michael Trier and contributors, 2010 Seba # built documents. # # The short X.Y version. -version = '0.3.0' +VERSION = open(os.path.join(os.path.dirname(__file__),"..", "..", 'VERSION')).readline().strip() +version = VERSION # The full version, including alpha/beta/rc tags. -release = '0.3.0 Beta 1' +release = VERSION # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. |