This is an automated email from the ASF dual-hosted git repository.
zehnder pushed a commit to branch rel/0.98.0
in repository https://gitbox.apache.org/repos/asf/streampipes.git
The following commit(s) were added to refs/heads/rel/0.98.0 by this push:
new 2a6c65e801 feat: Update version in installer directory
2a6c65e801 is described below
commit 2a6c65e801f812ebe56f6b58afec32e02638b204
Author: Philipp Zehnder <[email protected]>
AuthorDate: Fri Nov 28 09:28:52 2025 +0100
feat: Update version in installer directory
---
installer/cli/.env | 2 +-
installer/cli/README.md | 2 +-
installer/compose/.env | 2 +-
installer/compose/README.md | 2 +-
installer/k8s/Chart.yaml | 4 ++--
installer/k8s/README.md | 4 ++--
installer/k8s/values.yaml | 2 +-
installer/upgrade_versions.sh | 6 +++---
8 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/installer/cli/.env b/installer/cli/.env
index 149e8230cd..98390ede79 100644
--- a/installer/cli/.env
+++ b/installer/cli/.env
@@ -14,7 +14,7 @@
# limitations under the License.
SP_DOCKER_REGISTRY=apachestreampipes
-SP_VERSION=0.98.0-SNAPSHOT
+SP_VERSION=0.98.0
COMPOSE_PROJECT_NAME=streampipes
# -------------------------------------------------------------
diff --git a/installer/cli/README.md b/installer/cli/README.md
index e9b3b6d66d..545d98e595 100644
--- a/installer/cli/README.md
+++ b/installer/cli/README.md
@@ -23,7 +23,7 @@ The StreamPipes command-line interface (CLI) is focused on
developers in order t
* new core features for **backend** and **ui**.
<!-- BEGIN do not edit: set via ../upgrade_versions.sh -->
-**Current version:** 0.98.0-SNAPSHOT
+**Current version:** 0.98.0
<!-- END do not edit -->
## TL;DR
diff --git a/installer/compose/.env b/installer/compose/.env
index 9cf2ad1f71..b5ac8f0352 100644
--- a/installer/compose/.env
+++ b/installer/compose/.env
@@ -13,7 +13,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-SP_VERSION=0.98.0-SNAPSHOT
+SP_VERSION=0.98.0
SP_DOCKER_REGISTRY=apachestreampipes
COMPOSE_PROJECT_NAME=streampipes
diff --git a/installer/compose/README.md b/installer/compose/README.md
index 8e0292f9d8..4de03575a4 100644
--- a/installer/compose/README.md
+++ b/installer/compose/README.md
@@ -19,7 +19,7 @@
StreamPipes Compose is a simple collection of user-friendly `docker-compose`
files that easily lets gain first-hand experience with Apache StreamPipes.
<!-- BEGIN do not edit: set via ../upgrade_versions.sh -->
-**Current version:** 0.98.0-SNAPSHOT
+**Current version:** 0.98.0
<!-- END do not edit -->
> **NOTE**: We recommend StreamPipes Compose to only use for initial try-out
> and testing. If you are a developer and want to develop new pipeline
> elements or core feature, use the [StreamPipes CLI](../cli).
diff --git a/installer/k8s/Chart.yaml b/installer/k8s/Chart.yaml
index 3a16626009..87e2702764 100644
--- a/installer/k8s/Chart.yaml
+++ b/installer/k8s/Chart.yaml
@@ -14,9 +14,9 @@
# limitations under the License.
apiVersion: v1
-appVersion: "0.98.0-SNAPSHOT"
+appVersion: "0.98.0"
description: Self-Service Data Analytics for the Industrial IoT
name: streampipes-helm-chart
home: https://streampipes.apache.org
-version: 0.98.0-SNAPSHOT
+version: 0.98.0
icon: https://avatars1.githubusercontent.com/u/33908576
diff --git a/installer/k8s/README.md b/installer/k8s/README.md
index 7693cd2667..52df47dbc4 100644
--- a/installer/k8s/README.md
+++ b/installer/k8s/README.md
@@ -21,7 +21,7 @@
StreamPipes k8s is a helm chart to deploy StreamPipes on Kubernetes.
<!-- BEGIN do not edit: set via ../upgrade_versions.sh -->
-**Current version:** 0.98.0-SNAPSHOT
+**Current version:** 0.98.0
<!-- END do not edit -->
We provide two helm chart templates to get you going:
@@ -118,7 +118,7 @@ rm -rf ${HOME}/streampipes-k8s
| Parameter Name | Description
| Value |
|-----------------------------------------------|---------------------------------------------------------|------------------------------------------|
-| streampipes.version | StreamPipes version
| "0.98.0-SNAPSHOT" |
+| streampipes.version | StreamPipes version
| "0.98.0" |
| streampipes.registry | StreamPipes registry URL
| "apachestreampipes" |
| streampipes.auth.secretName | The secret name for storing
secrets | "sp-secrets" |
| streampipes.auth.users.admin.user | The initial admin user
| "[email protected]" |
diff --git a/installer/k8s/values.yaml b/installer/k8s/values.yaml
index e6601bf64d..e1b46e582d 100644
--- a/installer/k8s/values.yaml
+++ b/installer/k8s/values.yaml
@@ -27,7 +27,7 @@ failureThreshold: 30
hostPath: ""
streampipes:
- version: "0.98.0-SNAPSHOT"
+ version: "0.98.0"
registry: "apachestreampipes"
auth:
secretName: "sp-secrets"
diff --git a/installer/upgrade_versions.sh b/installer/upgrade_versions.sh
index 38b7c11741..de64513c4f 100755
--- a/installer/upgrade_versions.sh
+++ b/installer/upgrade_versions.sh
@@ -14,9 +14,9 @@
# See the License for the specific language governing permissions and
# limitations under the License.
-NEW_VERSION=$1
+NEW_VERSION=$2
# get old version from ./cli/.env
-OLD_VERSION=$(grep -oP '^SP_VERSION=\K\S*' ./cli/.env)
+OLD_VERSION=$1
FILES=(
# cli
@@ -60,4 +60,4 @@ set_version(){
set_version
-echo "Version updated from $OLD_VERSION to $NEW_VERSION"
\ No newline at end of file
+echo "Version updated from $OLD_VERSION to $NEW_VERSION"