diff --git a/docs/Proposals.md b/docs/Proposals.md index b510276b4..aeeeb3619 100644 --- a/docs/Proposals.md +++ b/docs/Proposals.md @@ -36,7 +36,6 @@ You can learn more about contributing new proposals (and other ways to contribut | Proposal | Champion | Versions | | -------------------------------------------------- | --------------------------------------------------------------------- | -------- | | [Clocks: Timezone][wasi-clocks] | Dan Gohman, Colin Murphy | | -| [CLI: Exit With Code][wasi-cli] | Dan Gohman, Lann Martin | | | [HTTP: Informational Outbound Response][wasi-http] | Piotr Sikora, Jiaxiao Zhou, Dan Chiarlone, David Justice, Luke Wagner | | | [I2C][wasi-i2c] | Friedrich Vandenberghe, Merlijn Sebrechts, Maximilian Seidler | | | [Key-value Store][wasi-kv-store] | Jiaxiao Zhou, Dan Chiarlone, David Justice | | diff --git a/proposals/cli/wit-0.3.0-draft/exit.wit b/proposals/cli/wit-0.3.0-draft/exit.wit index 811476166..baf5e5b2d 100644 --- a/proposals/cli/wit-0.3.0-draft/exit.wit +++ b/proposals/cli/wit-0.3.0-draft/exit.wit @@ -12,6 +12,6 @@ interface exit { /// /// This function does not return; the effect is analogous to a trap, but /// without the connotation that something bad has happened. - @unstable(feature = cli-exit-with-code) + @since(version = 0.3.0) exit-with-code: func(status-code: u8); } diff --git a/proposals/cli/wit/exit.wit b/proposals/cli/wit/exit.wit index 427935c8d..3dffe9873 100644 --- a/proposals/cli/wit/exit.wit +++ b/proposals/cli/wit/exit.wit @@ -12,6 +12,6 @@ interface exit { /// /// This function does not return; the effect is analogous to a trap, but /// without the connotation that something bad has happened. - @unstable(feature = cli-exit-with-code) + @since(version = 0.2.12) exit-with-code: func(status-code: u8); }