Skip to content

Commit acb8c0f

Browse files
committed
prepare v1.1.2
1 parent 2559de5 commit acb8c0f

File tree

3 files changed

+19
-14
lines changed

3 files changed

+19
-14
lines changed

CHANGELOG.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,19 @@
77
* `db` and `passwd` will emit DeprecationWarning in v1.2. See #933.
88
* `Connection.ping(reconnect)` change the default to not reconnect.
99

10+
## v1.1.2
11+
12+
Release date: 2025-08-24
13+
14+
* Prevent UnboundLocalError in very rare situation. https://github.com/PyMySQL/PyMySQL/pull/1174
15+
* Close underlying `SocketIO` soon when Connection is closed for PyPy. https://github.com/PyMySQL/PyMySQL/issues/1183
16+
* Fix importing PyMySQL fail on CPython 3.13 when `getpass.getuser()` raises OSEError. https://github.com/PyMySQL/PyMySQL/pull/1190
17+
* Make charset name "utf8" case insensitive. https://github.com/PyMySQL/PyMySQL/pull/1195
18+
* `Connection.kill()` uses `KILL` query instead of `COM_KILL`command to support MySQL 8.4. https://github.com/PyMySQL/PyMySQL/pull/1197
19+
* Fix SSL error on CPython 3.13 caused by strict TLS default setting. https://github.com/PyMySQL/PyMySQL/pull/1198
20+
* Fix auth switch request handling. https://github.com/PyMySQL/PyMySQL/pull/1200
21+
22+
1023
## v1.1.1
1124

1225
Release date: 2024-05-21

pymysql/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@
4949

5050
# PyMySQL version.
5151
# Used by setuptools and connection_attrs
52-
VERSION = (1, 1, 1, "final", 1)
53-
VERSION_STRING = "1.1.1"
52+
VERSION = (1, 1, 2, "final")
53+
VERSION_STRING = "1.1.2"
5454

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

pyproject.toml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -7,24 +7,15 @@ authors = [
77
]
88
dependencies = []
99

10-
requires-python = ">=3.7"
10+
requires-python = ">=3.8"
1111
readme = "README.md"
12-
license = {text = "MIT License"}
12+
license = "MIT"
1313
keywords = ["MySQL"]
1414
classifiers = [
1515
"Development Status :: 5 - Production/Stable",
16-
"Programming Language :: Python :: 3",
17-
"Programming Language :: Python :: 3.7",
18-
"Programming Language :: Python :: 3.8",
19-
"Programming Language :: Python :: 3.9",
20-
"Programming Language :: Python :: 3.10",
21-
"Programming Language :: Python :: 3.11",
22-
"Programming Language :: Python :: 3.12",
23-
"Programming Language :: Python :: 3.13",
2416
"Programming Language :: Python :: Implementation :: CPython",
2517
"Programming Language :: Python :: Implementation :: PyPy",
2618
"Intended Audience :: Developers",
27-
"License :: OSI Approved :: MIT License",
2819
"Topic :: Database",
2920
]
3021
dynamic = ["version"]
@@ -40,9 +31,10 @@ dynamic = ["version"]
4031
[project.urls]
4132
"Project" = "https://github.com/PyMySQL/PyMySQL"
4233
"Documentation" = "https://pymysql.readthedocs.io/"
34+
"Changelog" = "https://github.com/PyMySQL/PyMySQL/blob/main/CHANGELOG.md"
4335

4436
[build-system]
45-
requires = ["setuptools>=61"]
37+
requires = ["setuptools>=77"]
4638
build-backend = "setuptools.build_meta"
4739

4840
[tool.setuptools.packages.find]

0 commit comments

Comments
 (0)