summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpencer McIntyre <zeroSteiner@gmail.com>2018-05-23 22:11:25 -0400
committerSpencer McIntyre <zeroSteiner@gmail.com>2018-05-23 22:11:25 -0400
commitf7e0b7d17538a10b1348f392380c565631921497 (patch)
tree8f8ddd50cea64d8fa4294a4520fef79972ff540f
parentb5622096e33f6620f5b2726405d09686adab31c2 (diff)
downloadpluginbase-f7e0b7d17538a10b1348f392380c565631921497.tar.gz
Bump the version to 0.7b0
-rw-r--r--pluginbase.py2
-rw-r--r--setup.py2
2 files changed, 2 insertions, 2 deletions
diff --git a/pluginbase.py b/pluginbase.py
index 8dfa149..b31711a 100644
--- a/pluginbase.py
+++ b/pluginbase.py
@@ -32,7 +32,7 @@ else:
from io import BytesIO as NativeBytesIO
-__version__ = '0.6'
+__version__ = '0.7b0'
_local = threading.local()
_internalspace = ModuleType(__name__ + '._internalspace')
diff --git a/setup.py b/setup.py
index a152895..2b70c4f 100644
--- a/setup.py
+++ b/setup.py
@@ -10,7 +10,7 @@ setup(
author_email='armin.ronacher@active-4.com',
maintainer='Spencer McIntyre',
maintainer_email='zeroSteiner@gmail.com',
- version='0.6',
+ version='0.7-dev',
url='http://github.com/mitsuhiko/pluginbase',
py_modules=['pluginbase'],
description='A support library for building plugins sytems in Python.',