Skip to content

Commit

Permalink
v0.14.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Kenneth Reitz committed Sep 2, 2012
1 parent 81897dd commit a69cf7e
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 5 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,5 @@ requests.egg-info/
*.pyc
*.swp
env/

.workon
5 changes: 5 additions & 0 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@
History
-------

0.14.0 (2012-09-02)
++++++++++++++++++++

- No more iter_content errors if already downloaded.

0.13.9 (2012-08-25)
+++++++++++++++++++

Expand Down
10 changes: 5 additions & 5 deletions requests/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,25 +25,25 @@
>>> r = requests.post("http://httpbin.org/post", data=payload)
>>> print r.text
{
// ...snip... //
...
"form": {
"key2": "value2",
"key1": "value1"
},
// ...snip... //
...
}
The other HTTP methods are supported - see `requests.api`. Full documentation
is at <http://requests.rtfd.org/>.
is at <http://python-requests.org>.
:copyright: (c) 2012 by Kenneth Reitz.
:license: ISC, see LICENSE for more details.
"""

__title__ = 'requests'
__version__ = '0.13.9'
__build__ = 0x001309
__version__ = '0.14.0'
__build__ = 0x001400
__author__ = 'Kenneth Reitz'
__license__ = 'ISC'
__copyright__ = 'Copyright 2012 Kenneth Reitz'
Expand Down

0 comments on commit a69cf7e

Please sign in to comment.