Skip to content

Commit de63767

Browse files
committed
Version updates.
1 parent aa2fd11 commit de63767

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/node.js.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
fail-fast: false
2929
matrix:
3030
node-version: [18.x, 19.x, 20.x, 21.x, 22.x, 23.x]
31-
coherence-version: [22.06.11, 24.09.1]
31+
coherence-version: [22.06.11, 24.09]
3232

3333
steps:
3434
- uses: actions/checkout@v3

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
- run: npm install
3939
# run unit tests
4040
- run: COHERENCE_VERSION=22.06.11 npm run test-cycle
41-
- run: COHERENCE_VERSION=24.09.1 npm run test-cycle
41+
- run: COHERENCE_VERSION=24.09 npm run test-cycle
4242
- run: npm install --no-save typedoc
4343
# generate dist which runs other tasks
4444
- run: npm run dist

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ the network transport.
2121
Before testing the library, you must ensure a Coherence cluster is available. For local development, we recommend using the Coherence CE Docker image; it contains everything necessary for the client to operate correctly.
2222

2323
```bash
24-
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:24.09.1
24+
docker run -d -p 1408:1408 ghcr.io/oracle/coherence-ce:24.09
2525
```
2626

2727
or to save some keystrokes/time, use the included npm script, `coh-up` to start a two-member Cluster with the gRPC port at 1408"
@@ -30,7 +30,7 @@ npm run coh-up
3030
```
3131

3232
**Important!** When calling `coh-up` or `coh-down`, the LTS version of Coherence will be used (`22.06.11`).
33-
To use a later Coherence version, such as `24.09.1`, prefix the calls with, or export `COHERENCE_VERSION=<desired-version>`.
33+
To use a later Coherence version, such as `24.09`, prefix the calls with, or export `COHERENCE_VERSION=<desired-version>`.
3434
For example:
3535
```bash
3636
COHERENCE_VERSION=24.03 npm run coh-up

0 commit comments

Comments
 (0)