Skip to content

Commit 5855ca9

Browse files
Bump PyMySQL to 1.1.0 to solve : LookupError: unknown encoding: utf8mb3
Close #406
1 parent e6eb218 commit 5855ca9

File tree

3 files changed

+8
-5
lines changed

3 files changed

+8
-5
lines changed

CHANGELOG

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -192,4 +192,7 @@
192192
* Fix merging error of XAPrepareEvent
193193

194194
0.42.2 16/07/2023
195-
* Fix release error
195+
* Fix release error
196+
197+
0.43.0 23/07/2023
198+
* Bump PyMySQL to 1.1.0 to solve : LookupError: unknown encoding: utf8mb3

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,9 @@
4848
# built documents.
4949
#
5050
# The short X.Y version.
51-
version = '0.42.2'
51+
version = '0.43'
5252
# The full version, including alpha/beta/rc tags.
53-
release = '0.42.2'
53+
release = '0.43'
5454

5555
# The language for content autogenerated by Sphinx. Refer to documentation
5656
# for a list of supported languages.

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def run(self):
2929
unittest.main(tests, argv=sys.argv[:1])
3030

3131

32-
version = "0.42.2"
32+
version = "0.43.0"
3333

3434
this_directory = Path(__file__).parent
3535
long_description = (this_directory / "README.md").read_text()
@@ -49,5 +49,5 @@ def run(self):
4949
"pymysqlreplication.constants",
5050
"pymysqlreplication.tests"],
5151
cmdclass={"test": TestCommand},
52-
install_requires=['pymysql>=0.10'],
52+
install_requires=['pymysql>=1.1.0'],
5353
)

0 commit comments

Comments
 (0)