Skip to content

Commit

Permalink
1.4.8
Browse files Browse the repository at this point in the history
  • Loading branch information
IlyaSkriblovsky committed Mar 18, 2023
1 parent e490fdb commit 1df7eb2
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# Changelog

## Release 1.4.8 (2023-03-18)

### Features

- SSL connection support

---

## Release 1.4.7 (2019-12-03)

### Bugfixes
Expand Down
11 changes: 6 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
url="http://github.com/IlyaSkriblovsky/txredisapi",
Expand All @@ -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',
],
)
2 changes: 1 addition & 1 deletion txredisapi.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 1df7eb2

Please sign in to comment.