Skip to content

Commit 9c3bd9c

Browse files
Release 1.0.10
1 parent fc29278 commit 9c3bd9c

File tree

3 files changed

+10
-10
lines changed

3 files changed

+10
-10
lines changed

CHANGELOG

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -261,6 +261,5 @@
261261
* Fix typo in ident variable name (#619)
262262
* Remove black and use only ruff as linter
263263

264-
NEXT
265-
* Support for Python 3.9 to 3.13
266-
* Improve testing with better MariaDB coverage
264+
1.0.10 16/11/2025
265+
* Fix MySQL 5.7 column name support (#625)

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@
99
# All configuration values have a default; values that are commented out
1010
# serve to show the default.
1111

12-
import sys
1312
import os
13+
import sys
1414

1515
# If extensions (or modules to document with autodoc) are in another directory,
1616
# add these directories to sys.path here. If the directory is relative to the
@@ -49,7 +49,7 @@
4949
# The short X.Y version.
5050
version = "1.0"
5151
# The full version, including alpha/beta/rc tags.
52-
release = "1.0.9"
52+
release = "1.0.10"
5353

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

setup.py

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
#!/usr/bin/env python
22

33
try:
4-
from setuptools import setup, Command
4+
from setuptools import Command, setup
55
except ImportError:
6-
from distutils.core import setup, Command
6+
from distutils.core import Command, setup
77

8-
from pathlib import Path
98
import sys
9+
from pathlib import Path
1010

1111

1212
class TestCommand(Command):
@@ -22,13 +22,14 @@ def run(self):
2222
"""
2323
Finds all the tests modules in tests/, and runs them.
2424
"""
25-
from pymysqlreplication import tests
2625
import unittest
2726

27+
from pymysqlreplication import tests
28+
2829
unittest.main(tests, argv=sys.argv[:1])
2930

3031

31-
version = "1.0.9"
32+
version = "1.0.10"
3233

3334
this_directory = Path(__file__).parent
3435
long_description = (this_directory / "README.md").read_text()

0 commit comments

Comments
 (0)