diff --git a/CHANGELOG.md b/CHANGELOG.md index 175da77..63794e9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## Release 1.4.10 (2023-07-06) + +### Bugfixes + +- Fix SubscriberProtocol to work with charset=None (#150) + +--- + ## Release 1.4.9 (2023-03-18) ### Features diff --git a/setup.py b/setup.py index 5b6d3d6..02f03ab 100644 --- a/setup.py +++ b/setup.py @@ -23,7 +23,7 @@ setuptools.setup( name="txredisapi", - version="1.4.9", + version="1.4.10", py_modules=["txredisapi"], install_requires=["twisted", "six"], author="Alexandre Fiori", diff --git a/txredisapi.py b/txredisapi.py index 0d752e4..ce424cf 100644 --- a/txredisapi.py +++ b/txredisapi.py @@ -2813,4 +2813,4 @@ def slave_for(self, service_name, factory_class=SentinelConnectionFactory, ] __author__ = "Alexandre Fiori" -__version__ = version = "1.4.9" +__version__ = version = "1.4.10"