Skip to content

Commit

Permalink
v1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
methane committed Jan 7, 2021
1 parent 66e29fb commit 6e5d5bd
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## v1.0.0

Release date: TBD
Release date: 2021-01-07

Backward incompatible changes:

Expand Down
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 @@
)


VERSION = (0, 10, 1, None)
VERSION = (1, 0, 0, None)
if VERSION[3] is not None:
VERSION_STRING = "%d.%d.%d_%s" % VERSION
else:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env python
from setuptools import setup, find_packages

version = "0.10.1"
version = "1.0.0"

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

0 comments on commit 6e5d5bd

Please sign in to comment.