Skip to content

Commit

Permalink
Release 0.7 version
Browse files Browse the repository at this point in the history
  • Loading branch information
kxepal committed Feb 18, 2015
1 parent aad6a57 commit 241ab62
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
0.7.0 (2015-02-18)
------------------

- Great improvements in multipart module
- Document.update now supports multipart requests to upload
multiple attachments in single shot
- Added Proxy Authentication provider
- Minimal requirements for aiohttp raised up to 0.14.0 version

0.6.0 (2014-11-12)
------------------

Expand Down
4 changes: 2 additions & 2 deletions aiocouchdb/version.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
# -*- coding: utf-8 -*-
#
# Copyright (C) 2014 Alexander Shorin
# Copyright (C) 2014-2015 Alexander Shorin
# All rights reserved.
#
# This software is licensed as described in the file LICENSE, which
# you should have received as part of this distribution.
#

__version_info__ = (0, 7, 0, 'dev', 0)
__version_info__ = (0, 7, 0, '', 0)
__version__ = '%(version)s%(tag)s%(build)s' % {
'version': '.'.join(map(str, __version_info__[:3])),
'tag': '-' + __version_info__[3] if __version_info__[3] else '',
Expand Down

0 comments on commit 241ab62

Please sign in to comment.