Skip to content

Commit

Permalink
Bump to 0.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Mar 11, 2016
1 parent b3146a9 commit b28cb01
Show file tree
Hide file tree
Showing 3 changed files with 16 additions and 2 deletions.
4 changes: 3 additions & 1 deletion CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
CHANGES
=======

0.3 (12-15-2016)
0.3.0 (03-11-2016)
----------------

- Dockerize tests

- Reuse memcached connections in Client Pool #4

- Fix stats parse to compatible more mc class software #5

0.2 (12-15-2015)
----------------

Expand Down
2 changes: 2 additions & 0 deletions aiomcache/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,5 @@
from .exceptions import ClientException, ValidationException

__all__ = ('Client', 'ClientException', 'ValidationException')

__version__ = '0.3.0'
12 changes: 11 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,18 @@
import codecs
import os
import re
import sys
from setuptools import setup, find_packages

version = '0.2'

with codecs.open(os.path.join(os.path.abspath(os.path.dirname(
__file__)), 'aiomcache', '__init__.py'), 'r', 'latin1') as fp:
try:
version = re.findall(r"^__version__ = '([^']+)'\r?$",
fp.read(), re.M)[0]
except IndexError:
raise RuntimeError('Unable to determine version.')


if sys.version_info >= (3, 4):
install_requires = []
Expand Down

0 comments on commit b28cb01

Please sign in to comment.