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
docs: remove -latest references and require versioned recipe types (#22)
Follow-up to #21.
Update recipe READMEs, Makefile, and `CONTRIBUTING.md` to reflect that
`-latest` tags are no longer used and recipe types must include an
explicit `@<version>`.
Copy file name to clipboardExpand all lines: recipes/asset-canister/README.md
+6-4Lines changed: 6 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,17 +10,19 @@ Example of how to reference this recipe in an `icp.yaml` file:
10
10
canisters:
11
11
- name: frontend
12
12
recipe:
13
-
type: "@dfinity/asset-canister"
13
+
type: "@dfinity/asset-canister@<version>"
14
14
configuration:
15
15
version: 0.30.2
16
16
dir: dist
17
17
```
18
18
19
+
> Replace `<version>` with a release version (e.g. `v2.1.0`). See [available versions](https://github.com/dfinity/icp-cli-recipes/releases?q=asset-canister&expanded=true).
Copy file name to clipboardExpand all lines: recipes/motoko/README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,12 +10,14 @@ Example of how to reference this recipe in an `icp.yaml` file:
10
10
canisters:
11
11
- name: backend
12
12
recipe:
13
-
type: "@dfinity/motoko"
13
+
type: "@dfinity/motoko@<version>"
14
14
configuration:
15
15
main: src/main.mo
16
16
shrink: true
17
17
```
18
18
19
+
> Replace `<version>` with a release version (e.g. `v4.0.0`). See [available versions](https://github.com/dfinity/icp-cli-recipes/releases?q=motoko&expanded=true).
> Replace `<version>` with a release version (e.g. `v2.0.0`). See [available versions](https://github.com/dfinity/icp-cli-recipes/releases?q=prebuilt&expanded=true).
Copy file name to clipboardExpand all lines: recipes/rust/README.md
+5-3Lines changed: 5 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,12 +10,14 @@ Example of how to reference this recipe in an `icp.yaml` file:
10
10
canisters:
11
11
- name: backend
12
12
recipe:
13
-
type: "@dfinity/rust"
13
+
type: "@dfinity/rust@<version>"
14
14
configuration:
15
15
package: my-canister
16
16
shrink: true
17
17
```
18
18
19
+
> Replace `<version>` with a release version (e.g. `v3.0.0`). See [available versions](https://github.com/dfinity/icp-cli-recipes/releases?q=rust&expanded=true).
0 commit comments