forked from lepture/captcha
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Changlog | ||
======== | ||
|
||
The changelog of Captcha. | ||
|
||
|
||
Version 0.1.1 | ||
------------- | ||
|
||
Released on Dec 2, 2014, this is a bugfix release. | ||
|
||
- Use cStringIO in Python 2 instead of BytesIO | ||
- Fix random.randint for Python 3 | ||
- Add font_sizes parameters for ImageCaptcha when width is too small | ||
|
||
|
||
Version 0.1 | ||
----------- | ||
|
||
|
||
Released on Nov 27, 2014, the very first release. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,6 +10,6 @@ | |
:license: BSD, see LICENSE for more details. | ||
""" | ||
|
||
__version__ = '0.1' | ||
__version__ = '0.1.1' | ||
__author__ = 'Hsiaoming Yang <[email protected]>' | ||
__homepage__ = 'https://github.com/lepture/captcha' |