8000 v0.9.3 · PyMySQL/PyMySQL@8eee266 · GitHub
[go: up one dir, main page]

Skip to content

Commit 8eee266

Browse files
committed
v0.9.3
1 parent 4bf0420 commit 8eee266

File tree

3 files changed

+13
-2
lines changed

3 files changed

+13
-2
lines changed

CHANGELOG

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Changes
22

3+
## 0.9.3
4+
5+
Release date: 2018-12-18
6+
7+
* cryptography dependency is optional now.
8+
* Fix old_password (used before MySQL 4.1) support.
9+
* Deprecate old_password.
10+
* Stop sending ``sys.argv[0]`` for connection attribute "program_name".
11+
* Close connection when unknown error is happened.
12+
* Deprecate context manager API of Connection object.
13+
314
## 0.9.2
415

516
Release date: 2018-07-04

pymysql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
DateFromTicks, TimeFromTicks, TimestampFromTicks)
3636

3737

38-
VERSION = (0, 9, 2, None)
38+
VERSION = (0, 9, 3, None)
3939
if VERSION[3] is not None:
4040
VERSION_STRING = "%d.%d.%d_%s" % VERSION
4141
else:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import io
33
from setuptools import setup, find_packages
44

5-
version = "0.9.2"
5+
version = "0.9.3"
66

77
with io.open('./README.rst', encoding='utf-8') as f:
88
readme = f.read()

0 commit comments

Comments
 (0)
0