Skip to content

Commit

Permalink
Version bump 0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
lepture committed Dec 24, 2017
1 parent 7cefa4e commit 06f609c
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 15 deletions.
15 changes: 8 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,14 @@ Lovely features that Authlib has built-in:

- Generic specification implementations
- OAuth 1 (RFC5849)
- OAuth 2 (RFC6749, RFC6750, RFC7009, RFC7662)
- OAuth 2 (RFC6749, RFC6750, RFC7009)
- OpenID Connect
- **DONE** OAuth 1, OAuth 2 Requests Sessions
- **DONE** Mixed OAuth 1 and OAuth 2 Client
- **DONE** Integrated client with Flask
- **DONE** Integrated client with Django
- **TODO** Flask OAuth 1 / OAuth 2 Servers
- OAuth 1, OAuth 2 Requests Sessions
- Mixed OAuth 1 and OAuth 2 Client
- Integrated client with Flask
- Integrated client with Django
- **TODO** Flask OAuth 1 Server
- Flask OAuth 2 Authorization server and resource protector
- **TODO** Django OAuth 1 / OAuth 2 Servers

Authlib is compatible with Python2.7+ and Python3.5+.
Expand All @@ -41,7 +42,7 @@ email at <me@lepture.com>. Attachment with patch is welcome.

Authlib is licensed under LGPLv3. Please see LICENSE for licensing details.

If this license doesn’t fit your company, consider to purchase a commercial
If this license does not fit your company, consider to purchase a commercial
license.

Find more information on <https://authlib.org/support#commercial-license>
2 changes: 1 addition & 1 deletion authlib/consts.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name = 'Authlib'
version = '0.3-dev'
version = '0.3'
author = 'Hsiaoming Yang <me@lepture.com>'
homepage = 'https://authlib.org/'
default_user_agent = '{}/{} (+{})'.format(name, version, homepage)
10 changes: 5 additions & 5 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -10,16 +10,16 @@ Here you can see the full list of changes between each Authlib release.
Version 0.3: Nagato
-------------------

**Release Date not Decided**
**Released on Dec 24, 2017. Merry Christmas!**

This is a feature releasing for OAuth 2 server. Since this is the first
release of the server implementation, you would expect that there are bugs,
security vulnerabilities, and uncertainties. Try it bravely.

- RFC6749, all grant types, refresh token, authorization server.
- RFC6750, bearer token creation and validation.
- RFC7009, token revocation.
- Flask implementation of authorization server and resource protector.
- :ref:`RFC6749 <specs/rfc6749>`, all grant types, refresh token, authorization server.
- :ref:`RFC6750 <specs/rfc6750>`, bearer token creation and validation.
- :ref:`RFC7009 <specs/rfc7009>`, token revocation.
- :ref:`Flask implementation <flask_oauth2_server>` of authorization server and resource protector.
- Mixin of SQLAlchemy models for easy integration.

.. admonition:: Breaking Changes
Expand Down
2 changes: 2 additions & 0 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,8 @@
'description': 'A ready to use authentication library.',
'github_user': 'lepture',
'github_repo': 'authlib',
'twitter': 'authlib',
'og_image': 'https://authlib.org/logo.png',
'analytics_id': 'UA-34098939-7',
'meta_html': (
'<link rel="apple-touch-icon" sizes="180x180" '
Expand Down
2 changes: 1 addition & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Lovely features that Authlib has built-in:

- Generic specification implementations
- OAuth 1 (RFC5849)
- OAuth 2 (RFC6749, RFC6750, RFC7009, RFC7662)
- OAuth 2 (RFC6749, RFC6750, RFC7009)
- OpenID Connect
- OAuth 1, OAuth 2 Requests Sessions
- Mixed OAuth 1 and OAuth 2 Client
Expand Down
2 changes: 1 addition & 1 deletion requirements-docs.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
-r requirements.txt
Flask
Django
sphinx-typlog-theme==0.2
sphinx-typlog-theme==0.3.1

0 comments on commit 06f609c

Please sign in to comment.