Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,8 @@ jobs:
DIR=`pwd`
cd build/_output/docs
zip -r ../docs.zip *
cd $DIR
# Save the docs.zip
cp ../docs.zip /tmp

- name: Build Binaries
shell: bash
Expand All @@ -86,6 +87,9 @@ jobs:
CLI_TMP_BIN=/tmp/coherence-cli-bin
mkdir bin || true
cp -R ${CLI_TMP_BIN}/* bin/
# Restore the docs.zip
mkdir -p ./build/_output
mv /tmp/docs.zip ./build/_output/docs.zip

- name: Create Release
uses: actions/create-release@v1
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# ----------------------------------------------------------------------------------------------------------------------
# Copyright (c) 2021, 2024 Oracle and/or its affiliates.
# Copyright (c) 2021, 2025 Oracle and/or its affiliates.
# Licensed under the Universal Permissive License v 1.0 as shown at
# https://oss.oracle.com/licenses/upl.
#
Expand All @@ -15,7 +15,7 @@
# ======================================================================================================================

# The version of the CLI being build - this should be a valid SemVer format
VERSION ?= 1.9.0
VERSION ?= 1.9.1
MILESTONE ?=
SHELL := /bin/bash

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ curl -sL https://raw.githubusercontent.com/oracle/coherence-cli/main/scripts/ins
For Windows, use the curl command below, then copy `cohctl.exe` to a directory in your PATH:

```cmd
curl -sLo cohctl.exe "https://github.com/oracle/coherence-cli/releases/download/1.8.0/cohctl-1.8.0-windows-amd64.exe"
curl -sLo cohctl.exe "https://github.com/oracle/coherence-cli/releases/download/1.9.0/cohctl-1.9.0-windows-amd64.exe"
```

> Note: Change the **amd64** to **arm** for ARM based processor in the URL above.
Expand Down
4 changes: 2 additions & 2 deletions docs/sitegen.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ engine:
attributes:
plantumlconfig: "_plantuml-config.txt"
commercial-docs-base-url: "https://docs.oracle.com/en/middleware/fusion-middleware/coherence/14.1.2"
cli-version: "1.9.0"
cli-version: "1.9.1"
coherence-version: "14.1.2-0-1"
coherence-default-version: "14.1.2-0-1"
assets:
Expand All @@ -35,7 +35,7 @@ backend:
name: "vuetify"
homePage: "docs/about/overview.adoc"
releases:
- "1.9.0"
- "1.9.1"
navigation:
type: "ROOT"
title: "Coherence CLI"
Expand Down
Loading