From 3dd434999d84bd769db549836bd97d781c64e3e6 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Thu, 10 Aug 2023 12:18:34 -0700 Subject: [PATCH] Back out CLI changes from 12.0.0 release notes This was reverted for 12.0.0 in #6830 --- RELEASES.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/RELEASES.md b/RELEASES.md index 0df39e52b8c6..c1c6f1c29069 100644 --- a/RELEASES.md +++ b/RELEASES.md @@ -8,6 +8,13 @@ Unreleased. ### Changed +* Options to the `wasmtime` CLI for Wasmtime itself must now come before the + WebAssembly module. For example `wasmtime run foo.wasm --disable-cache` now + must be specified as `wasmtime run --disable-cache foo.wasm`. Any + argument/option after the WebAssembly module is now interpreted as an argument + to the wasm module itself. + [#6737](https://github.com/bytecodealliance/wasmtime/pull/6737) + -------------------------------------------------------------------------------- ## 12.0.0 @@ -68,13 +75,6 @@ Unreleased. ### Changed -* Options to the `wasmtime` CLI for Wasmtime itself must now come before the - WebAssembly module. For example `wasmtime run foo.wasm --disable-cache` now - must be specified as `wasmtime run --disable-cache foo.wasm`. Any - argument/option after the WebAssembly module is now interpreted as an argument - to the wasm module itself. - [#6737](https://github.com/bytecodealliance/wasmtime/pull/6737) - * Empty types are no longer allowed in the component model. [#6777](https://github.com/bytecodealliance/wasmtime/pull/6777)