Skip to content

Commit 9639f74

Browse files
committed
Update copyright and version
1 parent 9a8dc9f commit 9639f74

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ For local development, we recommend using the Coherence CE Docker image; it cont
3131
everything necessary for the client to operate correctly.
3232

3333
```bash
34-
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:24.09
34+
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:24.09.02
3535
```
3636

3737
## Installation
@@ -112,7 +112,7 @@ Please consult the [security guide](./SECURITY.md) for our responsible security
112112

113113
## License
114114

115-
Copyright (c) 2023, 2024, Oracle and/or its affiliates.
115+
Copyright (c) 2023, 2025, Oracle and/or its affiliates.
116116

117117
Released under the Universal Permissive License v1.0 as shown at
118118
<https://oss.oracle.com/licenses/upl/>.

docs/conf.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@
2323
sys.path.insert(0, os.path.abspath("../src"))
2424

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

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

3030
project = "Python Client for Oracle Coherence. v%s" % release
31-
copyright = "(c) 2022, 2024, Oracle and/or its affiliates."
31+
copyright = "(c) 2022, 2025, Oracle and/or its affiliates."
3232
author = "Oracle"
3333

3434

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 = "1.1.1"
6+
version = "2.0"
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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
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 distutils.core import setup
66

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

src/coherence/__init__.py

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

55
from __future__ import annotations
66

7-
__version__ = "1.1.1"
7+
__version__ = "2.0"
88

99
import contextvars
1010
import logging

tests/e2e/test_ai.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
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
import random

0 commit comments

Comments
 (0)