Skip to content

Commit f695f6b

Browse files
committed
Version bump 0.4.0
1 parent b77b863 commit f695f6b

File tree

3 files changed

+12
-7
lines changed

3 files changed

+12
-7
lines changed

docs/changelog.rst

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Here you can see the full list of changes between each Flask-OAuthlib release.
99
Version 0.4.0
1010
-------------
1111

12-
Release date to be decided.
12+
Released on Nov 12, 2013
1313

1414
- Redesign contrib library.
1515
- A new way for lazy loading configuration via `#51`_.
@@ -21,6 +21,8 @@ Release date to be decided.
2121
Version 0.3.4
2222
-------------
2323

24+
Released on Oct 31, 2013
25+
2426
- Bugfix for client missing a string placeholder via `#49`_.
2527
- Bugfix for client property getter via `#48`_.
2628

@@ -30,7 +32,7 @@ Version 0.3.4
3032
Version 0.3.3
3133
-------------
3234

33-
Release on Oct 4, 2013
35+
Released on Oct 4, 2013
3436

3537
- Support for token generator in OAuth2 Provider via `#42`_.
3638
- Improve client part, improve test cases.
@@ -42,7 +44,7 @@ Release on Oct 4, 2013
4244
Version 0.3.2
4345
-------------
4446

45-
Release on Sep 13, 2013
47+
Released on Sep 13, 2013
4648

4749
- Upgrade oauthlib to 0.6
4850
- A quick bugfix for request token params via `#40`_.
@@ -52,7 +54,7 @@ Release on Sep 13, 2013
5254
Version 0.3.1
5355
-------------
5456

55-
Release on Aug 22, 2013
57+
Released on Aug 22, 2013
5658

5759
- Add contrib module via `#15`_. We are still working on it,
5860
take your own risk.
@@ -68,7 +70,7 @@ Release on Aug 22, 2013
6870
Version 0.3.0
6971
-------------
7072

71-
Release on July 10, 2013.
73+
Released on July 10, 2013.
7274

7375
- OAuth1 Provider available. Documentation at :doc:`oauth1`. :)
7476
- Add ``before_request`` and ``after_request`` via `#22`_.
@@ -81,7 +83,7 @@ Release on July 10, 2013.
8183
Version 0.2.0
8284
-------------
8385

84-
Release on June 19, 2013.
86+
Released on June 19, 2013.
8587

8688
- OAuth2 Provider available. Documentation at :doc:`oauth2`. :)
8789
- Make client part testable.

docs/client.rst

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ Flask config by the key ``TWITTER``, the configuration looks like::
6565

6666
oauth.init_app(app)
6767

68+
.. versionadded:: 0.4.0
69+
6870
Or looks like that::
6971

7072
app.config['TWITTER_CONSUMER_KEY'] = 'a random string key'

flask_oauthlib/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
:license: BSD, see LICENSE for more details.
1212
"""
1313

14-
__version__ = "0.3.4"
14+
__version__ = "0.4.0"
1515
__author__ = "Hsiaoming Yang <me@lepture.com>"
1616
__homepage__ = 'https://github.com/lepture/flask-oauthlib'
17+
__license__ = 'BSD'

0 commit comments

Comments
 (0)