Skip to content

Commit

Permalink
Release 0.7.0rc0 (#241)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dreamsorcerer authored Jan 16, 2022
1 parent 54312f1 commit bf0b3f4
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
10 changes: 5 additions & 5 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ CHANGES

.. towncrier release notes start
0.7.0 (2021-11-XX)
==================

- Dropped python 3.4 and 3.5 support
0.7.0rc0 (2022-01-16)
=====================

- Added the support of Python 3.8, 3.9, 3.10
- Added support for Python 3.10
- Added support for non-ascii keys
- Added type annotations

0.6.0 (2017-12-03)
==================
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.6.0'
__version__ = "0.7.0rc0"
3 changes: 1 addition & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
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]
version = re.findall(r'^__version__ = "([^"]+)"\r?$', fp.read(), re.M)[0]
except IndexError:
raise RuntimeError('Unable to determine version.')

Expand Down

0 comments on commit bf0b3f4

Please sign in to comment.