8000 v1.0.1 · PyMySQL/PyMySQL@5c6f8bc · GitHub
[go: up one dir, main page]

Skip to content

Commit 5c6f8bc

Browse files
committed
v1.0.1
1 parent 2d36a19 commit 5c6f8bc

File tree

3 files changed

+11
-2
lines changed

3 files changed

+11
-2
lines changed

CHANGELOG.md

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

3+
## v1.0.1
4+
5+
Release date: 2021-01-08
6+
7+
* Stop emitting DeprecationWarning for use of ``db`` and ``passwd``.
8+
Note that they are still deprecated. (#939)
9+
* Add ``python_requires=">=3.6"`` to setup.py. (#936)
10+
11+
312
## v1.0.0
413

514
Release date: 2021-01-07

pymysql/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
)
4848

4949

50-
VERSION = (1, 0, 0, None)
50+
VERSION = (1, 0, 1, None)
5151
if VERSION[3] is not None:
5252
VERSION_STRING = "%d.%d.%d_%s" % VERSION
5353
else:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/usr/bin/env python
22
from setuptools import setup, find_packages
33

4-
version = "1.0.0"
4+
version = "1.0.1"
55

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

0 commit comments

Comments
 (0)
0