summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpencer McIntyre <zeroSteiner@gmail.com>2016-06-10 12:33:21 -0400
committerSpencer McIntyre <zeroSteiner@gmail.com>2016-06-10 12:33:21 -0400
commitbe2b0afd99fd43febc58df3b39212e992f631d00 (patch)
treeb6395d94cea1e0184f71edef41cba93f8af7ac3f
parent4eb4bbe214bd9650fd20cbf3672cdb9765762982 (diff)
downloadpluginbase-be2b0afd99fd43febc58df3b39212e992f631d00.tar.gz
This is 0.4-dev
-rw-r--r--pluginbase.py1
-rw-r--r--setup.py2
2 files changed, 2 insertions, 1 deletions
diff --git a/pluginbase.py b/pluginbase.py
index 1158ed9..b337576 100644
--- a/pluginbase.py
+++ b/pluginbase.py
@@ -32,6 +32,7 @@ else:
from io import BytesIO as NativeBytesIO
+__version__ = '0.4b0'
_local = threading.local()
_internalspace = ModuleType(__name__ + '._internalspace')
diff --git a/setup.py b/setup.py
index 00a0ff4..00fe566 100644
--- a/setup.py
+++ b/setup.py
@@ -8,7 +8,7 @@ setup(
name='pluginbase',
author='Armin Ronacher',
author_email='armin.ronacher@active-4.com',
- version='0.3',
+ version='0.4-dev',
url='http://github.com/mitsuhiko/pluginbase',
py_modules=['pluginbase'],
description='A support library for building plugins sytems in Python.',