Skip to content

Commit 8100911

Browse files
authored
docs(example): change CLI version to v1.0.0 (#302)
1 parent 9ae5381 commit 8100911

8 files changed

Lines changed: 20 additions & 17 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ $ go install github.com/yomorun/cli/yomo@latest
4848
```bash
4949
$ yomo -V
5050

51-
YoMo CLI version: v0.1.9
51+
YoMo CLI version: v1.0.0
5252
```
5353

5454
### 2. Create your stream function

README_CN.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ $ env GOBIN=/bin go install github.com/yomorun/cli/yomo@latest
4343
```bash
4444
$ yomo -V
4545

46-
YoMo CLI version: v0.1.9
46+
YoMo CLI version: v1.0.0
4747
```
4848

4949
### 2. 创建第一个yomo应用

example/0-basic/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Install YoMo CLI
1717
```bash
1818
$ curl -fsSL "https://bina.egoist.sh/yomorun/cli?name=yomo" | sh
1919

20-
==> Resolved version latest to v0.1.7
20+
==> Resolved version latest to v1.0.0
2121
==> Downloading asset for darwin amd64
2222
==> Installing yomo to /usr/local/bin
2323
==> Installation complete
@@ -28,7 +28,7 @@ $ curl -fsSL "https://bina.egoist.sh/yomorun/cli?name=yomo" | sh
2828
```bash
2929
$ go install github.com/yomorun/cli/yomo@latest
3030
$ yomo version
31-
YoMo CLI Version: v0.1.7
31+
YoMo CLI Version: v1.0.0
3232
```
3333

3434
## Option 1: Auto Run

example/1-pipeline/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Install YoMo CLI
2323
```bash
2424
$ curl -fsSL "https://bina.egoist.sh/yomorun/cli?name=yomo" | sh
2525

26-
==> Resolved version latest to v0.1.7
26+
==> Resolved version latest to v1.0.0
2727
==> Downloading asset for darwin amd64
2828
==> Installing yomo to /usr/local/bin
2929
==> Installation complete
@@ -34,7 +34,7 @@ $ curl -fsSL "https://bina.egoist.sh/yomorun/cli?name=yomo" | sh
3434
```bash
3535
$ go install github.com/yomorun/cli/yomo@latest
3636
$ yomo version
37-
YoMo CLI Version: v0.1.7
37+
YoMo CLI Version: v1.0.0
3838
```
3939

4040
## Option 1: Auto Run

example/2-iopipe/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Install YoMo CLI
2323
```bash
2424
$ curl -fsSL "https://bina.egoist.sh/yomorun/cli?name=yomo" | sh
2525

26-
==> Resolved version latest to v0.1.7
26+
==> Resolved version latest to v1.0.0
2727
==> Downloading asset for darwin amd64
2828
==> Installing yomo to /usr/local/bin
2929
==> Installation complete
@@ -34,7 +34,7 @@ $ curl -fsSL "https://bina.egoist.sh/yomorun/cli?name=yomo" | sh
3434
```bash
3535
$ go install github.com/yomorun/cli/yomo@latest
3636
$ yomo version
37-
YoMo CLI Version: v0.1.7
37+
YoMo CLI Version: v1.0.0
3838
```
3939

4040
## Option 1: Auto Run

example/3-multi-sfn/README.MD

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Install YoMo CLI
1919
```bash
2020
$ curl -fsSL "https://bina.egoist.sh/yomorun/cli?name=yomo" | sh
2121

22-
==> Resolved version latest to v0.1.7
22+
==> Resolved version latest to v1.0.0
2323
==> Downloading asset for darwin amd64
2424
==> Installing yomo to /usr/local/bin
2525
==> Installation complete
@@ -30,7 +30,7 @@ $ curl -fsSL "https://bina.egoist.sh/yomorun/cli?name=yomo" | sh
3030
```bash
3131
$ go install github.com/yomorun/cli/yomo@latest
3232
$ yomo version
33-
YoMo CLI Version: v0.1.7
33+
YoMo CLI Version: v1.0.0
3434
```
3535

3636
## Option 1: Auto Run

example/3-multi-sfn/Taskfile.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,11 @@ output: "prefixed"
66

77
env:
88
YOMO_LOG_LEVEL: error
9+
# set the following environment values on production mode
910
# YOMO_ENV: production
10-
YOMO_TLS_CACERT_FILE: "../../test/tls/ca.crt"
11-
YOMO_TLS_CERT_FILE: "../../test/tls/client.crt"
12-
YOMO_TLS_KEY_FILE: "../../test/tls/client.key"
11+
# YOMO_TLS_CACERT_FILE: "../../test/tls/ca.crt"
12+
# YOMO_TLS_CERT_FILE: "../../test/tls/client.crt"
13+
# YOMO_TLS_KEY_FILE: "../../test/tls/client.key"
1314

1415
tasks:
1516
run:
@@ -29,8 +30,10 @@ tasks:
2930
env:
3031
YOMO_LOG_LEVEL: error
3132
YOMO_ZIPPER_WORKFLOW: ./zipper/workflow.yaml
32-
YOMO_TLS_CERT_FILE: "../../test/tls/server.crt"
33-
YOMO_TLS_KEY_FILE: "../../test/tls/server.key"
33+
# set the following environment values on production mode
34+
# YOMO_ENV: production
35+
# YOMO_TLS_CERT_FILE: "../../test/tls/server.crt"
36+
# YOMO_TLS_KEY_FILE: "../../test/tls/server.key"
3437

3538
source-build:
3639
desc: build source

example/4-cascading-zipper/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Install YoMo CLI
1818
```bash
1919
$ curl -fsSL "https://bina.egoist.sh/yomorun/cli?name=yomo" | sh
2020

21-
==> Resolved version latest to v0.1.7
21+
==> Resolved version latest to v1.0.0
2222
==> Downloading asset for darwin amd64
2323
==> Installing yomo to /usr/local/bin
2424
==> Installation complete
@@ -29,7 +29,7 @@ $ curl -fsSL "https://bina.egoist.sh/yomorun/cli?name=yomo" | sh
2929
```bash
3030
$ go install github.com/yomorun/cli/yomo@latest
3131
$ yomo version
32-
YoMo CLI Version: v0.1.7
32+
YoMo CLI Version: v1.0.0
3333
```
3434

3535
## Option 1: Auto Run

0 commit comments

Comments
 (0)