Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Release date: TBD
* Deprecate `Connection.set_charset(charset)` (#1119)
* New connection always send "SET NAMES charset [COLLATE collation]" query. (#1119)
Since collation table is vary on MySQL server versions, collation in handshake is fragile.
* Support `charset="utf8mb3"` option (#1127)


## v1.0.3
Expand Down
4 changes: 2 additions & 2 deletions pymysql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@

# PyMySQL version.
# Used by setuptools and connection_attrs
VERSION = (1, 1, 0, "rc", 1)
VERSION_STRING = "1.1.0rc1"
VERSION = (1, 1, 0, "rc", 2)
VERSION_STRING = "1.1.0rc2"

### for mysqlclient compatibility
### Django checks mysqlclient version.
Expand Down