Skip to content

Commit

Permalink
Release 0.8 version
Browse files Browse the repository at this point in the history
  • Loading branch information
kxepal committed Mar 20, 2015
1 parent 60eef1f commit cd4554c
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 1 deletion.
21 changes: 21 additions & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
@@ -1,3 +1,24 @@
0.8.0 (2015-03-20)
------------------

- Source tree was refactored in the way to support multiple major CouchDB
versions as like as the other friendly forks
- Database create and delete methods now return exact the same response as
CouchDB sends back
- Each module now contains __all__ list to normalize their exports
- API classes and Resource now has nicer __repr__ output
- Better error messages format
- Fix function_clause error on attempt to update a document with attachments
by using multipart request
- Document.update doesn't makes document's dict invalid for further requests
after multipart one
- Fixed accidental payload sent with HEAD/GET/DELETE requests which caused
connection close from CouchDB side
- Added integration with Travis CI
- Code cleaned by following pylint and flake8 notices
- Added short tutorial for documentation
- Minor fixes and Makefile improvements

0.7.0 (2015-02-18)
------------------

Expand Down
2 changes: 1 addition & 1 deletion aiocouchdb/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# you should have received as part of this distribution.
#

__version_info__ = (0, 8, 0, 'dev', 0)
__version_info__ = (0, 8, 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 cd4554c

Please sign in to comment.