Skip to content

Commit

Permalink
v0.10.8
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Reitz committed Mar 9, 2012
1 parent 21c2146 commit e15ae8f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 2 deletions.
7 changes: 7 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
History
-------

0.10.8 (2012-03-09)
+++++++++++++++++++

* Generate chunked ValueError fix
* Proxy configuration by environment variables


0.10.7 (2012-03-07)
+++++++++++++++++++

Expand Down
4 changes: 2 additions & 2 deletions requests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@
"""

__title__ = 'requests'
__version__ = '0.10.7'
__build__ = 0x001007
__version__ = '0.10.8'
__build__ = 0x001008
__author__ = 'Kenneth Reitz'
__license__ = 'ISC'
__copyright__ = 'Copyright 2012 Kenneth Reitz'
Expand Down
2 changes: 2 additions & 0 deletions requests/defaults.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
:pool_maxsize: The maximium size of an HTTP connection pool.
:pool_connections: The number of active HTTP connection pools to use.
:encode_uri: If true, URIs will automatically be percent-encoded.
:trust_env: If true, the surrouding environment will be trusted (environ, netrc).
"""

SCHEMAS = ['http', 'https']
Expand All @@ -42,5 +43,6 @@
defaults['safe_mode'] = False
defaults['keep_alive'] = True
defaults['encode_uri'] = True
defaults['trust_env'] = True


0 comments on commit e15ae8f

Please sign in to comment.