diff --git a/docs/conf.py b/docs/conf.py index 5011351..ecb0aed 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -15,7 +15,7 @@ project = 'redis-log-handler' copyright = '2023, Iglesys347' author = 'Iglesys347' -release = '1.0.1' +release = '1.1.0' # -- General configuration --------------------------------------------------- # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration diff --git a/rlh/__init__.py b/rlh/__init__.py index 9184f21..c23c85a 100644 --- a/rlh/__init__.py +++ b/rlh/__init__.py @@ -9,3 +9,5 @@ "RedisStreamLogHandler", "RedisPubSubLogHandler", ] + +__version__ = "1.1.0" diff --git a/setup.py b/setup.py index c0de7be..1b63cd9 100644 --- a/setup.py +++ b/setup.py @@ -8,7 +8,7 @@ long_description_content_type="text/markdown", keywords=["Redis", "logging"], license="MIT", - version="1.0.1", + version="1.1.0", packages=find_packages( include=[ "rlh",