8000 v1.0.3 by methane · Pull Request #1097 · PyMySQL/PyMySQL · GitHub
[go: up one dir, main page]

Skip to content

v1.0.3 #1097

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 28, 2023
Merged

v1.0.3 #1097

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
v103
  • Loading branch information
methane committed Mar 28, 2023
commit 2606dec552197c66766f153b61ca96191c119dd4
2 changes: 1 addition & 1 deletion pymysql/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 5401 @@
)


VERSION = (1, 0, 3, "rc1")
VERSION = (1, 0, 3, None)
if VERSION[3] is not None:
VERSION_STRING = "%d.%d.%d_%s" % VERSION
else:
Expand Down
0