summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README.rst23
-rwxr-xr-xsetup.py2
2 files changed, 15 insertions, 10 deletions
diff --git a/README.rst b/README.rst
index 32b8ea5..b941483 100644
--- a/README.rst
+++ b/README.rst
@@ -2,7 +2,7 @@ OAuthLib
========
*A generic, spec-compliant, thorough implementation of the OAuth request-signing
-logic.*
+logic.*
.. image:: https://secure.travis-ci.org/idangazit/oauthlib.png?branch=master
@@ -21,15 +21,20 @@ favorite HTTP library. If you're a maintainer of such a library, write a thin
veneer on top of OAuthLib and get OAuth support for very little effort.
-Current Status
---------------
-
-OAuthLib is in active development, with most of OAuth1 complete and OAuth2
-already in the works.
-
-
License
-------
OAuthLib is yours to use and abuse according to the terms of the BSD license.
-Check the LICENSE file for full details. \ No newline at end of file
+Check the LICENSE file for full details.
+
+
+
+Changelog
+---------
+
+*OAuthLib is in active development, with most of OAuth1 complete and OAuth2
+already in the works.*
+
+0.1.0: OAuth 1 client functionality seems to be working. Hooray!
+
+0.0.x: In the beginning, there was the word. \ No newline at end of file
diff --git a/setup.py b/setup.py
index e5c674b..6c23e15 100755
--- a/setup.py
+++ b/setup.py
@@ -17,7 +17,7 @@ tests_require = ['nose', 'unittest2', 'pycrypto']
setup(
name='oauthlib',
- version='0.0.2',
+ version='0.1.0',
description='A generic, spec-compliant, thorough implementation of the OAuth request-signing logic',
long_description=fread('README.rst'),
author='Idan Gazit',