diff --git a/CHANGELOG.md b/CHANGELOG.md index 83d6005..866903a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## Release 1.4.8 (2023-03-18) + +### Features + +- SSL connection support + +--- + ## Release 1.4.7 (2019-12-03) ### Bugfixes diff --git a/setup.py b/setup.py index f42768e..0222d1f 100644 --- a/setup.py +++ b/setup.py @@ -14,17 +14,14 @@ # See the License for the specific language governing permissions and # limitations under the License. -import sys import setuptools -py_version = sys.version_info[:2] -twisted_version = py_version == (2, 6) and 'twisted<15.5' or 'twisted' setuptools.setup( name="txredisapi", - version="1.4.7", + version="1.4.8", py_modules=["txredisapi"], - install_requires=[twisted_version, "six"], + install_requires=["twisted", "six"], author="Alexandre Fiori", author_email="fiorix@gmail.com", url="http://github.com/IlyaSkriblovsky/txredisapi", @@ -40,6 +37,10 @@ 'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.7', + 'Programming Language :: Python :: 3.8', + 'Programming Language :: Python :: 3.9', + 'Programming Language :: Python :: 3.10', + 'Programming Language :: Python :: 3.11', 'Programming Language :: Python :: Implementation :: PyPy', ], ) diff --git a/txredisapi.py b/txredisapi.py index 11c1d7b..8cb6b6a 100644 --- a/txredisapi.py +++ b/txredisapi.py @@ -2812,4 +2812,4 @@ def slave_for(self, service_name, factory_class=SentinelConnectionFactory, ] __author__ = "Alexandre Fiori" -__version__ = version = "1.4.7" +__version__ = version = "1.4.8"