You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: i18n/zh-CN/docusaurus-plugin-content-docs/version-0.10/user_docs/guides/package-management/3-quick-start.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -39,7 +39,7 @@ version = "0.0.1"
39
39
如下面的命令所示,为当前包添加一个版本号为 `1.28` 并且名为 `k8s` 的依赖包。
40
40
41
41
```shell
42
-
kcl mod add k8s:1.28
42
+
kcl mod add k8s:1.28.1
43
43
```
44
44
45
45
`kcl` 会为您将依赖添加到 kcl.mod 文件中.
@@ -51,7 +51,7 @@ edition = "0.0.1"
51
51
version = "0.0.1"
52
52
53
53
[dependencies]
54
-
k8s = "1.28"# The dependency 'k8s' with version '1.28'
54
+
k8s = "1.28.1"# The dependency 'k8s' with version '1.28.1'
0 commit comments