let's do this v0.6.0
authorKenneth Reitz <me@kennethreitz.com>
Wed, 17 Aug 2011 08:32:46 +0000 (04:32 -0400)
committerKenneth Reitz <me@kennethreitz.com>
Wed, 17 Aug 2011 08:32:46 +0000 (04:32 -0400)
HISTORY.rst
README.rst

index 7d98f8f8d4b927379d73a189d62404e801ea4e10..b2ae8f9f36ae45a5c25d8841e78165baf057b175 100644 (file)
@@ -2,16 +2,16 @@ History
 -------
 
 
-0.6.0 (2011-09-??)
+0.6.0 (2011-08-17)
 ++++++++++++++++++
 
 * New callback hook system
 * New persistient sessions object and context manager
 * Transparent Dict-cookie handling
-* status code reference object
+* Status code reference object
 * Removed Response.cached
 * Added Response.request
-* all args are kwargs
+* All args are kwargs
 * Relative redirect support
 * HTTPError handling improvements
 * Improved https testing
index feac4c3fd05f1d50d5a62c661cb6e7c9c876304e..529d14459a72af2a7936d07ded05e4c939df9ce7 100644 (file)
@@ -5,12 +5,12 @@ Requests is an ISC Licensed HTTP library, written in Python, for human
 beings.
 
 Most existing Python modules for sending HTTP requests are extremely
-verbose and cumbersome. Pythons builtin urllib2 module provides most of
+verbose and cumbersome. Python's builtin urllib2 module provides most of
 the HTTP capabilities you should need, but the api is thoroughly broken.
 It requires an enormous amount of work (even method overrides) to
 perform the simplest of tasks.
 
-Things shouldnt be this way. Not in Python.
+Things shouldn't be this way. Not in Python.
 
 ::
 
@@ -27,7 +27,7 @@ See `the same code, without Requests <https://gist.github.com/973705>`_.
 Requests allow you to send  **HEAD**, **GET**, **POST**, **PUT**,
 **PATCH**, and **DELETE** HTTP requests. You can add headers, form data,
 multipart files, and parameters with simple Python dictionaries, and access the
-response data in the same way. It's powered by :py:class:`urllib2`, but it does
+response data in the same way. It's powered by urllib2, but it does
 all the hard work and crazy hacks for you.