From b7cb09db8e55519a79b0976ad18a545d617fd72a Mon Sep 17 00:00:00 2001 From: Bailey Hayes Date: Tue, 2 Jun 2026 09:30:27 -0400 Subject: [PATCH] feat(cli): exit-with-code function stable Remove the feature gate for stabilized feature `exit-with-code function` --- proposals/cli/wit/exit.wit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); }