diff --git a/docs/conf.py b/docs/conf.py index 0a10060..6cff3d4 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -1,5 +1,5 @@ # ---------------------------------------------------------------------------------------------------------------------- -# Copyright (c) 2022, 2024, Oracle and/or its affiliates. +# Copyright (c) 2022, 2025, Oracle and/or its affiliates. # Licensed under the Universal Permissive License v 1.0 as shown at # https://oss.oracle.com/licenses/upl. # @@ -23,7 +23,7 @@ sys.path.insert(0, os.path.abspath("../src")) # The full version, including alpha/beta/rc tags -release = "2.0.0" +release = "2.0.1" # -- Project information ----------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 04c455f..9a3f469 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.0" +version = "2.0.1" 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 4dbacee..7cf965e 100644 --- a/setup.py +++ b/setup.py @@ -6,7 +6,7 @@ setup( name="coherence-client", - version="2.0.0", + version="2.0.1", 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 addb871..18ee1ea 100644 --- a/src/coherence/__init__.py +++ b/src/coherence/__init__.py @@ -1,10 +1,10 @@ -# Copyright (c) 2022, 2024, Oracle and/or its affiliates. +# Copyright (c) 2022, 2025, Oracle and/or its affiliates. # Licensed under the Universal Permissive License v 1.0 as shown at # https://oss.oracle.com/licenses/upl. from __future__ import annotations -__version__ = "2.0.0" +__version__ = "2.0.1" import contextvars import logging