From ae1a9f795cf8ae4dacaceb3222804c858d26b557 Mon Sep 17 00:00:00 2001 From: mdumandag Date: Wed, 13 Jan 2021 10:32:57 +0300 Subject: [PATCH] Set the cliet version to 4.0 Set the client version to 4.0 and development status to production/stable after completing the release process. --- docs/conf.py | 4 ++-- hazelcast/__init__.py | 2 +- setup.py | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/docs/conf.py b/docs/conf.py index 2e28ec6812..4539ed3f3f 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -72,9 +72,9 @@ # built documents. # # The short X.Y version. -version = "4.0.0" +version = "4.0" # The full version, including alpha/beta/rc tags. -release = "4.0.0b1" +release = "4.0" autodoc_member_order = "bysource" autoclass_content = "both" diff --git a/hazelcast/__init__.py b/hazelcast/__init__.py index df30f08d82..64db99c5ad 100644 --- a/hazelcast/__init__.py +++ b/hazelcast/__init__.py @@ -1,4 +1,4 @@ -__version__ = "4.0.0b1" +__version__ = "4.0" # Set the default handler to "hazelcast" loggers # to avoid "No handlers could be found" warnings. diff --git a/setup.py b/setup.py index 3c793b7cb2..f982968e78 100644 --- a/setup.py +++ b/setup.py @@ -27,7 +27,7 @@ author="Hazelcast Inc. Developers", author_email="hazelcast@googlegroups.com", classifiers=[ - "Development Status :: 4 - Beta", + "Development Status :: 5 - Production/Stable", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Natural Language :: English",