diff --git a/docs/source/conf.py b/docs/source/conf.py index 758adf6..5c5c38d 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -48,9 +48,9 @@ copyright = u'2012, Mahadevan R (2008-2010), Continuum Analytics (2012)' # built documents. # # The short X.Y version. -version = '0.8' +version = '0.9' # The full version, including alpha/beta/rc tags. -release = '0.8.2' +release = '0.9.0' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/docs/source/doc/getting_started.rst b/docs/source/doc/getting_started.rst index 36a408a..f13c616 100644 --- a/docs/source/doc/getting_started.rst +++ b/docs/source/doc/getting_started.rst @@ -38,7 +38,7 @@ supported, for a variety of reasons. Versions -------- -llvmpy 0.8.2 requires version 3.1 of LLVM. It may not work with +llvmpy 0.9 requires version 3.1 of LLVM. It may not work with previous versions. llvmpy has been built and tested with Python 2.7 and 3.2. It should work with diff --git a/setup.py b/setup.py index 8249671..996c1cb 100644 --- a/setup.py +++ b/setup.py @@ -126,8 +126,9 @@ kwds['long_description'] = open('README.rst').read() setup( name = 'llvmpy', description = 'Python bindings for LLVM', - author = 'Continuum Analytics, Inc.', - author_email = 'llvmpy@continuum.io', + author = 'R Mahadevan' + maintainer = 'Continuum Analytics, Inc.', + maintainer_email = 'llvmpy@continuum.io', url = 'http://www.llvmpy.org/', packages = ['llvm', 'llvm_cbuilder', 'llpython'], py_modules = ['llvm.core'],