Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: bytecodealliance/wasmtime-go
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v6.0.0
Choose a base ref
...
head repository: bytecodealliance/wasmtime-go
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.0.0
Choose a head ref
  • 3 commits
  • 33 files changed
  • 3 contributors

Commits on Mar 2, 2023

  1. How to set resource limit in wasmtime-go? (#101) (#171)

    * How to set resource limit in wasmtime-go? (#101)
    
    * Using dev version temporarily
    
    ---------
    
    Co-authored-by: Vitaly Volkov <vitvlkv@takeprofit.com>
    vlkv and Vitaly Volkov authored Mar 2, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    6deb799 View commit details

Commits on Mar 20, 2023

  1. Bump to 7.0.0 (#172)

    alexcrichton authored Mar 20, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    1a0899d View commit details
  2. v7.0.0 artifacts

    alexcrichton committed Mar 20, 2023

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    b239f69 View commit details
3 changes: 0 additions & 3 deletions .gitignore

This file was deleted.

2 changes: 1 addition & 1 deletion BUILD.bazel
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ go_library(
],
"//conditions:default": [],
}),
importpath = "github.com/bytecodealliance/wasmtime-go/v6",
importpath = "github.com/bytecodealliance/wasmtime-go/v7",
visibility = ["//visibility:public"],
)

14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -12,8 +12,8 @@
<a href="https://github.com/bytecodealliance/wasmtime-go/actions?query=workflow%3ACI">
<img src="https://github.com/bytecodealliance/wasmtime-go/workflows/CI/badge.svg" alt="CI status"/>
</a>
<a href="https://pkg.go.dev/github.com/bytecodealliance/wasmtime-go/v6">
<img src="https://godoc.org/github.com/bytecodealliance/wasmtime-go/v6?status.svg" alt="Documentation"/>
<a href="https://pkg.go.dev/github.com/bytecodealliance/wasmtime-go/v7">
<img src="https://godoc.org/github.com/bytecodealliance/wasmtime-go/v7?status.svg" alt="Documentation"/>
</a>
<a href="https://bytecodealliance.github.io/wasmtime-go/coverage.html">
<img src="https://img.shields.io/badge/coverage-main-green" alt="Code Coverage"/>
@@ -25,7 +25,7 @@
## Installation

```sh
go get -u github.com/bytecodealliance/wasmtime-go/v6@v6.0.0
go get -u github.com/bytecodealliance/wasmtime-go/v7@v7.0.0
```

Be sure to check out the [API documentation][api]!
@@ -39,16 +39,16 @@ need to arrange to build Wasmtime and use `CGO_*` env vars to compile correctly.

This project has been tested with Go 1.13 or later.

[api]: https://pkg.go.dev/github.com/bytecodealliance/wasmtime-go/v6
[api]: https://pkg.go.dev/github.com/bytecodealliance/wasmtime-go/v7
[wasmtime]: https://github.com/bytecodealliance/wasmtime

If you are a bazel user, add following to your WORKSPACE file:

```
go_repository(
name = "com_github_bytecodealliance_wasmtime_go",
importpath = "github.com/bytecodealliance/wasmtime-go/v6",
version = "v6.0.0",
importpath = "github.com/bytecodealliance/wasmtime-go/v7",
version = "v7.0.0",
)
```

@@ -61,7 +61,7 @@ package main

import (
"fmt"
"github.com/bytecodealliance/wasmtime-go/v6"
"github.com/bytecodealliance/wasmtime-go/v7"
)

func main() {
1 change: 1 addition & 0 deletions build/empty.go
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
package build
Loading