diff --git a/docs/conf.py b/docs/conf.py index 4fa5498..f5bfc16 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -23,7 +23,7 @@ sys.path.insert(0, os.path.abspath("../src")) # The full version, including alpha/beta/rc tags -release = "2.0.3" +release = "2.0.4" # -- Project information ----------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index aeec0a0..31c76ac 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -3,7 +3,7 @@ # https://oss.oracle.com/licenses/upl. [tool.poetry] name = "coherence-client" -version = "2.0.3" +version = "2.0.4" description = """The Coherence Python Client allows Python applications to act as cache clients to a \ Coherence Cluster using Google's gRPC framework as the network transport.""" packages = [ diff --git a/setup.py b/setup.py index 2c9e965..d43126f 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="coherence-client", - version="2.0.3", + version="2.0.4", packages=["coherence"], url="https://github.com/oracle/coherence-py-client", license="UPL", diff --git a/src/coherence/__init__.py b/src/coherence/__init__.py index b03ee36..4378b10 100644 --- a/src/coherence/__init__.py +++ b/src/coherence/__init__.py @@ -4,7 +4,7 @@ from __future__ import annotations -__version__ = "2.0.3" +__version__ = "2.0.4" import contextvars import logging