summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpencer McIntyre <zeroSteiner@gmail.com>2016-06-17 08:23:55 -0400
committerSpencer McIntyre <zeroSteiner@gmail.com>2016-06-17 08:23:55 -0400
commit3ad92592a45a6482ceb65dead13cb0eb13193ae4 (patch)
treefd752a9e8cec670dab8839814b1536dc70355eb1
parentb789c3afc6c41350078a7143027ba9d99acabd7d (diff)
downloadpluginbase-3ad92592a45a6482ceb65dead13cb0eb13193ae4.tar.gz
This is 0.40.4
-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 e4a48d6..4bab952 100644
--- a/pluginbase.py
+++ b/pluginbase.py
@@ -32,7 +32,7 @@ else:
from io import BytesIO as NativeBytesIO
-__version__ = '0.4b0'
+__version__ = '0.4'
_local = threading.local()
_internalspace = ModuleType(__name__ + '._internalspace')
diff --git a/setup.py b/setup.py
index f12951e..ed37405 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.4-dev',
+ version='0.4',
url='http://github.com/mitsuhiko/pluginbase',
py_modules=['pluginbase'],
description='A support library for building plugins sytems in Python.',