Skip to content

Commit 16a20a5

Browse files
authored
Release 2.0.2 (#244)
1 parent 28eef32 commit 16a20a5

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/conf.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -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.1"
26+
release = "2.0.2"
2727

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

pyproject.toml

+1-1
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.1"
6+
version = "2.0.2"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

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

src/coherence/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from __future__ import annotations
66

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

99
import contextvars
1010
import logging

0 commit comments

Comments
 (0)