diff --git a/.github/workflows/pytest.yml b/.github/workflows/pytest.yml index 47ea5f40..9e2b94fa 100644 --- a/.github/workflows/pytest.yml +++ b/.github/workflows/pytest.yml @@ -20,7 +20,7 @@ jobs: uses: actions/checkout@v2 - name: Setup Python - uses: actions/setup-python@v2 + uses: actions/setup-python@v4 with: python-version: ${{ matrix.python }} diff --git a/CHANGELOG b/CHANGELOG index 3de0c098..1c7dabfc 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -216,4 +216,7 @@ * Fix Json object, Array parse Error 0.45.1 05/10/2023 -* add util module \ No newline at end of file +* add util module + +0.46 10/10/2024 +* Fixing an issue of initializing table map when fake rotate event catching for Mysql versions 5.5, 5.6, 5.7 \ No newline at end of file diff --git a/docs/conf.py b/docs/conf.py index 0ac17868..6db2f0af 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -48,9 +48,9 @@ # built documents. # # The short X.Y version. -version = '0.45.1' +version = '0.46' # The full version, including alpha/beta/rc tags. -release = '0.45.1' +release = '0.46' # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.py b/setup.py index 3bfbc5a7..3d94cda5 100644 --- a/setup.py +++ b/setup.py @@ -29,7 +29,7 @@ def run(self): unittest.main(tests, argv=sys.argv[:1]) -version = "0.45.1" +version = "0.46" this_directory = Path(__file__).parent long_description = (this_directory / "README.md").read_text()