summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpencer McIntyre <zeroSteiner@gmail.com>2018-03-25 16:36:41 -0400
committerSpencer McIntyre <zeroSteiner@gmail.com>2018-03-25 16:36:41 -0400
commitbdbcfe5a940783ab434806d8dd20a1a7546e5f18 (patch)
tree1f30fb646d962c62f6e294d22cc26f3e5d95edf3
parent8907716a7da2e87e16db0369ca5ec494d670cc54 (diff)
downloadpluginbase-bdbcfe5a940783ab434806d8dd20a1a7546e5f18.tar.gz
Bump the version to 0.6b0
-rw-r--r--pluginbase.py2
-rw-r--r--setup.py4
2 files changed, 4 insertions, 2 deletions
diff --git a/pluginbase.py b/pluginbase.py
index 01cc3bf..ab8c33e 100644
--- a/pluginbase.py
+++ b/pluginbase.py
@@ -32,7 +32,7 @@ else:
from io import BytesIO as NativeBytesIO
-__version__ = '0.5'
+__version__ = '0.6b0'
_local = threading.local()
_internalspace = ModuleType(__name__ + '._internalspace')
diff --git a/setup.py b/setup.py
index ee2d20f..2158874 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,9 @@ setup(
name='pluginbase',
author='Armin Ronacher',
author_email='armin.ronacher@active-4.com',
- version='0.5',
+ maintainer='Spencer McIntyre',
+ maintainer_email='zeroSteiner@gmail.com',
+ version='0.6-dev',
url='http://github.com/mitsuhiko/pluginbase',
py_modules=['pluginbase'],
description='A support library for building plugins sytems in Python.',