Skip to content

Commit 9bacbc1

Browse files
committed
release-0.1.4
1 parent 9891629 commit 9bacbc1

6 files changed

Lines changed: 7 additions & 7 deletions

File tree

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Current Operator version
2-
VERSION ?= 0.1.2
2+
VERSION ?= 0.1.4
33
# Default image tag
44
DOCKER_REPO := $(if $(DOCKER_REPO),$(DOCKER_REPO),streamnative)
55
OPERATOR_IMG ?= ${DOCKER_REPO}/function-mesh:v$(VERSION)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A Kubernetes-Native way to run pulsar functions, connectors and composed functio
44
## Install
55

66
```bash
7-
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.1.2/install.sh | bash
7+
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.1.4/install.sh | bash
88
```
99

1010
The above command installs all the CRDs, required service account configuration, and all function-mesh operator components. Before you start running a function-mesh example, verify if Function Mesh is installed correctly.

charts/function-mesh-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ type: application
1515
# This is the chart version. This version number should be incremented each time you make changes
1616
# to the chart and its templates, including the app version.
1717
# Versions are expected to follow Semantic Versioning (https://semver.org/)
18-
version: 0.1.0
18+
version: 0.1.4
1919

2020
# This is the version number of the application being deployed. This version number should be
2121
# incremented each time you make changes to the application. Versions are not expected to

charts/function-mesh-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ rbac:
77
create: true
88

99
# operatorImage is Function Mesh Operator image
10-
operatorImage: streamnative/function-mesh:v0.1.2
10+
operatorImage: streamnative/function-mesh:v0.1.4
1111
imagePullPolicy: IfNotPresent
1212
imagePullSecrets: []
1313

docs/release_proocess.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,10 @@
1414
```
1515
git clone https://github.com/streamnative/function-mesh
1616
git checkout -b branch-x.y
17-
cd java-proxy
17+
cd mesh-worker-service
1818
mvn versions:set -DnewVersion=vx.y.z
1919
git add .
20-
git commit -m "Update release version for java proxy"
20+
git commit -m "Update release version for mesh worker service"
2121
git push origin branch-x.y
2222
```
2323

mesh-worker-service/pom.xml

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

2727
<groupId>io.functionmesh.proxy</groupId>
2828
<artifactId>mesh-worker-service</artifactId>
29-
<version>0.1.4-SNAPSHOT</version>
29+
<version>v0.1.4</version>
3030

3131
<properties>
3232
<pulsar.version>2.8.0-rc-202103292206</pulsar.version>

0 commit comments

Comments
 (0)