Skip to content

Commit 9bc04c0

Browse files
committed
prepare release
1 parent a673281 commit 9bc04c0

File tree

4 files changed

+7
-5
lines changed

4 files changed

+7
-5
lines changed

CHANGES.txt

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
CHANGES
22
=======
33

4-
0.9.1 (unreleased)
4+
0.9.1 (08-30-2014)
55
------------------
66

77
- Added MultiDict support for client request params and data #114.
88

99
- Fixed parameter type for IncompleteRead exception #118.
1010

11+
- Strictly require ASCII headers names and values #137
12+
1113
- Keep port in ProxyConnector #128.
1214

1315
- Python 3.4.1 compatibility #131.

aiohttp/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# This relies on each of the submodules having an __all__ variable.
22

3-
__version__ = '0.9.1dev'
3+
__version__ = '0.9.1'
44

55

66
from .protocol import *

aiohttp/client.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
import json
99
import io
1010
import inspect
11-
import itertools
1211
import random
1312
import time
1413
import urllib.parse

tests/test_client.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -532,8 +532,9 @@ def test_bytes_data(self):
532532
def test_files_and_bytes_data(self):
533533
with self.assertRaises(ValueError):
534534
with self.assertWarns(DeprecationWarning):
535-
ClientRequest('POST', 'http://python.org/',
536-
data=b'binary data', files={'file': b'file data'})
535+
ClientRequest(
536+
'POST', 'http://python.org/',
537+
data=b'binary data', files={'file': b'file data'})
537538

538539
@unittest.mock.patch('aiohttp.client.aiohttp')
539540
def test_content_encoding(self, m_http):

0 commit comments

Comments
 (0)