Skip to content
This repository was archived by the owner on Jan 7, 2019. It is now read-only.

Commit 30d9854

Browse files
Flask-RateLimiter v0.2.0
Co-authored-by: Tibor Simko <[email protected]> Signed-off-by: Jiri Kuncar <[email protected]>
1 parent 25edcdc commit 30d9854

File tree

5 files changed

+25
-7
lines changed

5 files changed

+25
-7
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,4 @@ Contact us at `[email protected] <mailto:[email protected]>`_
99
* Grzegorz Szpura <[email protected]>
1010
* Jiri Kuncar <[email protected]>
1111
* Tibor Simko <[email protected]>
12+
* Vladimir Sudilovsky <[email protected]>

CHANGES

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,15 @@ Changes
44
Here you can see the full list of changes between each Flask-RateLimiter
55
release.
66

7+
Version 0.2.0 (released 2014-12-16)
8+
9+
- The Flask-RateLimiter extension is now released under more permissive
10+
Revised BSD License. (#8)
11+
- Minor documentation updates. (#4)
12+
- Optionally callable limit argument. (#9)
13+
- Redis backend accepts keyword arguments from
14+
RATELIMITER_BACKEND_OPTIONS config variable. (#12 #13)
15+
716
Version 0.1.0 (released 2014-06-27)
817

918
- Initial public release.

MANIFEST.in

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,12 @@
77
# modify it under the terms of the Revised BSD License; see LICENSE
88
# file for more details.
99

10-
include LICENSE AUTHORS CHANGES README.rst
10+
include *.rst
1111
include .coveragerc run-tests.sh
12+
include .travis.yml
13+
include LICENSE AUTHORS CHANGES README.rst
1214
include docs/*.rst docs/*.py docs/Makefile
1315
include tests/*.py
14-
recursive-include docs/_themes *.py *.css *.css_t *.conf *.html README
16+
include tox.ini
1517
recursive-include docs/_templates *.html
18+
recursive-include docs/_themes *.py *.css *.css_t *.conf *.html README

RELEASE-NOTES.rst

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
======================================
2-
Flask-RateLimiter v0.1.0 is released
2+
Flask-RateLimiter v0.2.0 is released
33
======================================
44

5-
Flask-RateLimiter v0.1.0 was released on June 27, 2014.
5+
Flask-RateLimiter v0.2.0 was released on December 16, 2014.
66

77
About
88
-----
@@ -13,7 +13,12 @@ decorator.
1313
What's new
1414
----------
1515

16-
- Initial public release.
16+
- The Flask-RateLimiter extension is now released under more permissive
17+
Revised BSD License. (#8)
18+
- Minor documentation updates. (#4)
19+
- Optionally callable limit argument. (#9)
20+
- Redis backend accepts keyword arguments from
21+
RATELIMITER_BACKEND_OPTIONS config variable. (#12 #13)
1722

1823
Installation
1924
------------
@@ -23,7 +28,7 @@ Installation
2328
Documentation
2429
-------------
2530

26-
http://flask-ratelimiter.readthedocs.org/en/v0.1.0
31+
http://flask-ratelimiter.readthedocs.org/en/v0.2.0
2732

2833
Homepage
2934
--------

flask_ratelimiter/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
# Do not change the format of this next line. Doing so risks breaking
1717
# setup.py and docs/conf.py
1818

19-
__version__ = "0.1.1.dev20141103"
19+
__version__ = "0.2.0"

0 commit comments

Comments
 (0)