Skip to content

Commit a901944

Browse files
committed
bump to v0.1.8
1 parent 2f1984e commit a901944

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

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.7
2+
VERSION ?= 0.1.8
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.7/install.sh | bash
7+
curl -sSL https://github.com/streamnative/function-mesh/releases/download/v0.1.8/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
@@ -18,7 +18,7 @@ type: application
1818
# This is the chart version. This version number should be incremented each time you make changes
1919
# to the chart and its templates, including the app version.
2020
# Versions are expected to follow Semantic Versioning (https://semver.org/)
21-
version: 0.1.7
21+
version: 0.1.8
2222

2323
# This is the version number of the application being deployed. This version number should be
2424
# 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.7
10+
operatorImage: streamnative/function-mesh:v0.1.8
1111
imagePullPolicy: IfNotPresent
1212
imagePullSecrets: []
1313

install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ EOF
5656

5757
main() {
5858
local local_kube="kind"
59-
local fm_version="v0.1.7"
59+
local fm_version="v0.1.8"
6060
local kind_name="kind"
6161
local kind_version="v0.7.0"
6262
local node_num=2

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>v0.1.7</version>
29+
<version>v0.1.8</version>
3030

3131
<properties>
3232
<pulsar.version>2.8.1.3</pulsar.version>

0 commit comments

Comments
 (0)