Skip to content

Commit

Permalink
Bump to 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
asvetlov committed Dec 3, 2017
1 parent 46d5f62 commit 5d61982
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 4 deletions.
1 change: 0 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
sudo: required
language: python
python:
- "3.3"
- "3.4"
- "3.5"
- "3.6"
Expand Down
5 changes: 5 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGES
=======

0.6.0 (2017-12-03)
------------------

- Drop python 3.3 support

0.5.2 (2017-05-27)
------------------

Expand Down
2 changes: 1 addition & 1 deletion aiomcache/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,4 @@

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

__version__ = '0.5.2'
__version__ = '0.6.0'
7 changes: 5 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ def read(f):
'License :: OSI Approved :: BSD License',
'Intended Audience :: Developers',
'Programming Language :: Python',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
Expand All @@ -44,11 +43,15 @@ def read(f):
'Environment :: Web Environment',
'Framework :: AsyncIO',
],
author='Nikolay Kim, KeepSafe',
author='Nikolay Kim',
author_email='[email protected]',
maintainer=', '.join(('Nikolay Kim <[email protected]>',
'Andrew Svetlov <[email protected]>')),
maintainer_email='[email protected]',
url='https://github.com/aio-libs/aiomcache/',
license='BSD',
packages=find_packages(),
python_requires='>=3.4.0',
install_requires=install_requires,
tests_require=tests_require,
test_suite='nose.collector',
Expand Down

0 comments on commit 5d61982

Please sign in to comment.