Skip to content

Commit

Permalink
Bump version to 0.3.6
Browse files Browse the repository at this point in the history
  • Loading branch information
peter-wangxu committed May 15, 2018
1 parent 7899c4f commit 79604e2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion persistqueue/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# coding=utf-8
__author__ = 'Peter Wang'
__license__ = 'BSD'
__version__ = '0.3.5'
__version__ = '0.3.6'

from .exceptions import Empty, Full # noqa
from .pdict import PDict # noqa
Expand Down
6 changes: 3 additions & 3 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
'A thread-safe disk based persistent queue in Python.'
),
long_description=open('README.rst').read(),
author='Peter Wang',
author=__import__('persistqueue').__author__,
author_email='[email protected]',
maintainer='Peter Wang',
maintainer=__import__('persistqueue').__author__,
maintainer_email='[email protected]',
license='BSD',
license=__import__('persistqueue').__license__,
packages=find_packages(),
platforms=["all"],
url='http://github.com/peter-wangxu/persist-queue',
Expand Down

0 comments on commit 79604e2

Please sign in to comment.