8000 Release v1.1.0rc2 (#1129) · PyMySQL/PyMySQL@f3f3477 · GitHub
[go: up one dir, main page]

Skip to content

Commit f3f3477

Browse files
authored
Release v1.1.0rc2 (#1129)
1 parent fed7e80 commit f3f3477

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ Release date: TBD
1414
* Deprecate `Connection.set_charset(charset)` (#1119)
1515
* New connection always send "SET NAMES charset [COLLATE collation]" query. (#1119)
1616
Since collation table is vary on MySQL server versions, collation in handshake is fragile.
17+
* Support `charset="utf8mb3"` option (#1127)
1718

1819

1920
## v1.0.3

pymysql/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -48,8 +48,8 @@
4848

4949
# PyMySQL version.
5050
# Used by setuptools and connection_attrs
51-
VERSION = (1, 1, 0, "rc", 1)
52-
VERSION_STRING = "1.1.0rc1"
51+
VERSION = (1, 1, 0, "rc", 2)
52+
VERSION_STRING = "1.1.0rc2"
5353

5454
### for mysqlclient compatibility
5555
### Django checks mysqlclient version.

0 commit comments

Comments
 (0)
0