summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSpencer McIntyre <zeroSteiner@gmail.com>2018-05-23 21:43:58 -0400
committerSpencer McIntyre <zeroSteiner@gmail.com>2018-05-23 21:43:58 -0400
commitb5622096e33f6620f5b2726405d09686adab31c2 (patch)
treef170a2815ecf57caee3c0568572e97932e3f40a9
parentc7a9b74bb7185879f45c0c61679a58483adec7d9 (diff)
downloadpluginbase-b5622096e33f6620f5b2726405d09686adab31c2.tar.gz
This is 0.60.6
-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 fa88234..8dfa149 100644
--- a/pluginbase.py
+++ b/pluginbase.py
@@ -32,7 +32,7 @@ else:
from io import BytesIO as NativeBytesIO
-__version__ = '0.6b0'
+__version__ = '0.6'
_local = threading.local()
_internalspace = ModuleType(__name__ + '._internalspace')
diff --git a/setup.py b/setup.py
index 82666c2..a152895 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-dev',
+ version='0.6',
url='http://github.com/mitsuhiko/pluginbase',
py_modules=['pluginbase'],
description='A support library for building plugins sytems in Python.',