diff --git a/Directory.Build.props b/Directory.Build.props index 8f109e7..7691e18 100644 --- a/Directory.Build.props +++ b/Directory.Build.props @@ -2,7 +2,8 @@ true 0.39.1 - $(WasmtimeVersion)-preview1-dev - $(WasmtimeVersion)-preview1 + preview2 + $(WasmtimeVersion)-$(WasmtimeDotnetVersion)-dev + $(WasmtimeVersion)-$(WasmtimeDotnetVersion) diff --git a/README.md b/README.md index 1f1d8e2..d5b8c6f 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,7 @@ You can add a package reference with the [.NET SDK](https://dotnet.microsoft.com/): ```text -$ dotnet add package --version 0.39.1-preview1 wasmtime +$ dotnet add package --version 0.39.1-preview2 wasmtime ``` _Note that the `--version` option is required because the package is currently prerelease._ @@ -54,7 +54,7 @@ $ dotnet new console Next, add a reference to the [Wasmtime package](https://www.nuget.org/packages/Wasmtime): ``` -$ dotnet add package --version 0.39.1-preview1 wasmtime +$ dotnet add package --version 0.39.1-preview2 wasmtime ``` Replace the contents of `Program.cs` with the following code: diff --git a/docs/articles/intro.md b/docs/articles/intro.md index b6bd703..5765916 100644 --- a/docs/articles/intro.md +++ b/docs/articles/intro.md @@ -44,7 +44,7 @@ dotnet new console To use the .NET embedding of Wasmtime from the project, we need to add a reference to the [Wasmtime NuGet package](https://www.nuget.org/packages/Wasmtime): ```text -dotnet add package --version 0.39.1-preview1 wasmtime +dotnet add package --version 0.39.1-preview2 wasmtime ``` _Note that the `--version` option is required because the package is currently prerelease._