Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Udpate wasmtime #55

Merged
merged 2 commits into from Sep 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -33,10 +33,10 @@ To create a ASP.Net Core web application that host a demo WAGI Module:
***Note: nuget.org only contains (pre-)released versions of the packages, to install the latest versions follow the instructions [here](https://docs.github.com/en/packages/working-with-a-github-packages-registry/working-with-the-nuget-registry) to set up GitHub packages registry as a source for nuget packages.***

``` Console
dotnet new -i Deislabs.WAGI.Templates::0.7.0-preview
dotnet new -i Deislabs.WAGI.Templates::0.7.1-preview
```

This will add the dotnet wagi templates. To install pre-release versions of the templates the version of the template package must be provided as a suffix to the package name as show above `::0.7.0-preview`.
This will add the dotnet wagi templates. To install pre-release versions of the templates the version of the template package must be provided as a suffix to the package name as show above `::0.7.1-preview`.

``` Console
dotnet new wagi -n hello-wagi
Expand Down
2 changes: 1 addition & 1 deletion docs/installation.md
Expand Up @@ -15,7 +15,7 @@ dotnet add package Deislabs.WAGI --prerelease
info : Adding PackageReference for package 'Deislabs.WAGI' into project '/tmp/wagiproj/WagiTest.csproj'.
info : Restoring packages for /tmp/wagiproj/WagiTest.csproj...
info : Package 'Deislabs.WAGI' is compatible with all the specified frameworks in project '/tmp/wagiproj/WagiTest.csproj'.
info : PackageReference for package 'Deislabs.WAGI' version '0.7.0-preview' updated in file '/tmp/wagiproj/WagiTest.csproj'.
info : PackageReference for package 'Deislabs.WAGI' version '0.7.1-preview' updated in file '/tmp/wagiproj/WagiTest.csproj'.
info : Committing restore...
info : Writing assets file to disk. Path: /tmp/wagiproj/obj/project.assets.json
log : Restored /tmp/wagiproj/WagiTest.csproj (in 155 ms).
Expand Down
Expand Up @@ -5,7 +5,7 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Deislabs.WAGI" Version="0.7.0-preview" />
<PackageReference Include="Deislabs.WAGI" Version="0.7.1-preview" />
</ItemGroup>

<ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion source/wagi/wagi.csproj
Expand Up @@ -25,7 +25,7 @@
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0" PrivateAssets="All" />
<FrameworkReference Include="Microsoft.AspNetCore.App" />
<PackageReference Include="Tommy" Version="3.0.1" />
<PackageReference Include="Wasmtime" Version="0.28.0-preview1" />
<PackageReference Include="Wasmtime" Version="0.30.0-preview1" />
<None Include="docs\readme.md" Pack="true" PackagePath="" />
<!-- See https://github.com/NuGet/Home/issues/10791 -->
<!-- The following reference can be removed once this issue is resolved. -->
Expand Down