Skip to content

Commit 2f076d7

Browse files
authoredApr 22, 2025
COH-32106 - Release Python Client 2.0.1 (#237)
* COH-32106 - Release Python Client 2.0.1
1 parent 841af0e commit 2f076d7

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed
 

‎docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ----------------------------------------------------------------------------------------------------------------------
2-
# Copyright (c) 2022, 2024, Oracle and/or its affiliates.
2+
# Copyright (c) 2022, 2025, Oracle and/or its affiliates.
33
# Licensed under the Universal Permissive License v 1.0 as shown at
44
# https://oss.oracle.com/licenses/upl.
55
#
@@ -23,7 +23,7 @@
2323
sys.path.insert(0, os.path.abspath("../src"))
2424

2525
# The full version, including alpha/beta/rc tags
26-
release = "2.0.0"
26+
release = "2.0.1"
2727

2828
# -- Project information -----------------------------------------------------
2929

‎pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# https://oss.oracle.com/licenses/upl.
44
[tool.poetry]
55
name = "coherence-client"
6-
version = "2.0.0"
6+
version = "2.0.1"
77
description = """The Coherence Python Client allows Python applications to act as cache clients to a \
88
Coherence Cluster using Google's gRPC framework as the network transport."""
99
packages = [

‎setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
setup(
88
name="coherence-client",
9-
version="2.0.0",
9+
version="2.0.1",
1010
packages=["coherence"],
1111
url="https://github.com/oracle/coherence-py-client",
1212
license="UPL",

‎src/coherence/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
# Copyright (c) 2022, 2024, Oracle and/or its affiliates.
1+
# Copyright (c) 2022, 2025, Oracle and/or its affiliates.
22
# Licensed under the Universal Permissive License v 1.0 as shown at
33
# https://oss.oracle.com/licenses/upl.
44

55
from __future__ import annotations
66

7-
__version__ = "2.0.0"
7+
__version__ = "2.0.1"
88

99
import contextvars
1010
import logging

0 commit comments

Comments
 (0)