Skip to content

Commit 1bc8de9

Browse files
committed
Release v.0.2.0
Added option to change cursor class
1 parent 0083157 commit 1bc8de9

File tree

6 files changed

+13
-7
lines changed

6 files changed

+13
-7
lines changed

AUTHORS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,4 @@
33
==================================
44

55
Alexandre Ferland (admiralobvious)
6+
Alex Vishnya (Sp1tF1r3)

dev_requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
mysqlclient==1.3.5
1+
mysqlclient==1.3.6

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@ def __getattr__(cls, name):
6363
# built documents.
6464
#
6565
# The short X.Y version.
66-
version = '0.1.1'
66+
version = '0.2.0'
6767
# The full version, including alpha/beta/rc tags.
68-
release = '0.1.1'
68+
release = '0.2.0'
6969

7070
# The language for content autogenerated by Sphinx. Refer to documentation
7171
# for a list of supported languages.

docs/index.rst

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
contain the root `toctree` directive.
55
66
Welcome to Flask-MySQLdb's documentation!
7-
============================================
7+
=========================================
88

99
Flask-MySQLdb provides MySQL connection for Flask.
1010

@@ -66,6 +66,7 @@ directives:
6666
``MYSQL_CHARSET`` If present, the connection character set will be changed to this character set,
6767
if they are not equal. Default: 'utf-8'
6868
``MYSQL_SQL_MODE`` If present, the session SQL mode will be set to the given string.
69+
``MYSQL_CURSORCLASS`` If present, the cursor class will be set to the given string.
6970
============================ ===================================================
7071

7172

@@ -84,6 +85,10 @@ History
8485

8586
Changes:
8687

88+
- 0.2.0: September 5, 2015
89+
90+
- Added option to change the cursor. Thanks to `@Sp1tF1r3 <https://github.com/Sp1tF1r3>`_ on GitHub.
91+
8792
- 0.1.1: February 14, 2015
8893

8994
- Initial Release

requirements.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
Flask==0.10.1
2-
mock==1.0.1
3-
mysqlclient==1.3.5
2+
mock==1.3.0
3+
mysqlclient==1.3.6

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
setup(
1111
name='Flask-MySQLdb',
12-
version='0.1.1',
12+
version='0.2.0',
1313
url='https://github.com/admiralobvious/flask-mysqldb',
1414
license='MIT',
1515
author='Alexandre Ferland',

0 commit comments

Comments
 (0)