diff --git a/llvm/__init__.py b/llvm/__init__.py index 15720f3..1145d74 100644 --- a/llvm/__init__.py +++ b/llvm/__init__.py @@ -2,7 +2,7 @@ Common classes related to LLVM. """ -__version__ = '0.8.4' +__version__ = '0.9' from weakref import WeakValueDictionary diff --git a/setup.py b/setup.py index 88281dc..8249671 100644 --- a/setup.py +++ b/setup.py @@ -126,8 +126,8 @@ kwds['long_description'] = open('README.rst').read() setup( name = 'llvmpy', description = 'Python bindings for LLVM', - author = 'Mahadevan R', - author_email = 'mdevan@mdevan.org', + author = 'Continuum Analytics, Inc.', + author_email = 'llvmpy@continuum.io', url = 'http://www.llvmpy.org/', packages = ['llvm', 'llvm_cbuilder', 'llpython'], py_modules = ['llvm.core'],