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: v7.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: v8.0.0
Choose a head ref
  • 2 commits
  • 31 files changed
  • 1 contributor

Commits on Apr 20, 2023

  1. Bump to 8.0.0 (#173)

    alexcrichton authored Apr 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
    e7371ed View commit details
  2. v8.0.0 artifacts

    alexcrichton committed Apr 20, 2023
    Copy the full SHA
    b0119c2 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/v7",
importpath = "github.com/bytecodealliance/wasmtime-go/v8",
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/v7">
<img src="https://godoc.org/github.com/bytecodealliance/wasmtime-go/v7?status.svg" alt="Documentation"/>
<a href="https://pkg.go.dev/github.com/bytecodealliance/wasmtime-go/v8">
<img src="https://godoc.org/github.com/bytecodealliance/wasmtime-go/v8?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/v7@v7.0.0
go get -u github.com/bytecodealliance/wasmtime-go/v8@v8.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/v7
[api]: https://pkg.go.dev/github.com/bytecodealliance/wasmtime-go/v8
[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/v7",
version = "v7.0.0",
importpath = "github.com/bytecodealliance/wasmtime-go/v8",
version = "v8.0.0",
)
```

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

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

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