Skip to content

Commit

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

## Release 1.4.8 (2023-03-18)
## Release 1.4.9 (2023-03-18)

### Features

Expand Down
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,18 +15,24 @@
# limitations under the License.

import setuptools
from pathlib import Path

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


setuptools.setup(
name="txredisapi",
version="1.4.8",
version="1.4.9",
py_modules=["txredisapi"],
install_requires=["twisted", "six"],
author="Alexandre Fiori",
author_email="[email protected]",
url="http://github.com/IlyaSkriblovsky/txredisapi",
license="http://www.apache.org/licenses/LICENSE-2.0",
description="non-blocking redis client for python",
long_description=long_description,
long_description_content_type="text/markdown",
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
Expand Down
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.8"
__version__ = version = "1.4.9"

0 comments on commit c541750

Please sign in to comment.