diff --git a/BUILD.bazel b/BUILD.bazel index b16d3e5..9cfcb7e 100644 --- a/BUILD.bazel +++ b/BUILD.bazel @@ -63,7 +63,7 @@ go_library( ], "//conditions:default": [], }), - importpath = "github.com/bytecodealliance/wasmtime-go/v24", + importpath = "github.com/bytecodealliance/wasmtime-go/v25", visibility = ["//visibility:public"], ) diff --git a/README.md b/README.md index c10000e..99f26fc 100644 --- a/README.md +++ b/README.md @@ -12,8 +12,8 @@ CI status - - Documentation + + Documentation Code Coverage @@ -25,7 +25,7 @@ ## Installation ```sh -go get -u github.com/bytecodealliance/wasmtime-go/v24@v24.0.0 +go get -u github.com/bytecodealliance/wasmtime-go/v25@v25.0.0 ``` Be sure to check out the [API documentation][api]! @@ -39,7 +39,7 @@ 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/v24 +[api]: https://pkg.go.dev/github.com/bytecodealliance/wasmtime-go/v25 [wasmtime]: https://github.com/bytecodealliance/wasmtime If you are a bazel user, add following to your WORKSPACE file: @@ -47,8 +47,8 @@ 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/v24", - version = "v24.0.0", + importpath = "github.com/bytecodealliance/wasmtime-go/v25", + version = "v25.0.0", ) ``` @@ -61,7 +61,7 @@ package main import ( "fmt" - "github.com/bytecodealliance/wasmtime-go/v24" + "github.com/bytecodealliance/wasmtime-go/v25" ) func main() { @@ -179,8 +179,8 @@ Once merged checkout `main` and do: $ rm .gitignore $ python3 ci/download-wasmtime.py $ git add . -$ git commit -m 'v24.0.0 release artifacts' -$ git tag v24.0.0 +$ git commit -m 'v25.0.0 release artifacts' +$ git tag v25.0.0 ``` and push up the tag diff --git a/ci/download-wasmtime.py b/ci/download-wasmtime.py index fe4f86b..22b825b 100644 --- a/ci/download-wasmtime.py +++ b/ci/download-wasmtime.py @@ -10,7 +10,7 @@ import glob -version = 'v24.0.0' +version = 'v25.0.0' urls = [ ['wasmtime-{}-x86_64-mingw-c-api.zip', 'windows-x86_64'], ['wasmtime-{}-x86_64-linux-c-api.tar.xz', 'linux-x86_64'], diff --git a/example_test.go b/example_test.go index faa0ca6..6df0d4f 100644 --- a/example_test.go +++ b/example_test.go @@ -10,7 +10,7 @@ import ( "strings" "time" - "github.com/bytecodealliance/wasmtime-go/v24" + "github.com/bytecodealliance/wasmtime-go/v25" ) // Example of limiting a WebAssembly function's runtime using "fuel consumption". diff --git a/go.mod b/go.mod index 723e444..a5d1664 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/bytecodealliance/wasmtime-go/v24 +module github.com/bytecodealliance/wasmtime-go/v25 go 1.18 diff --git a/includebuild.go b/includebuild.go index 1b24a16..f3264e3 100644 --- a/includebuild.go +++ b/includebuild.go @@ -12,11 +12,11 @@ import ( // included in vendored dependencies. // Cf. https://github.com/golang/go/issues/26366 - _ "github.com/bytecodealliance/wasmtime-go/v24/build/include" - _ "github.com/bytecodealliance/wasmtime-go/v24/build/include/wasmtime" - _ "github.com/bytecodealliance/wasmtime-go/v24/build/linux-aarch64" - _ "github.com/bytecodealliance/wasmtime-go/v24/build/linux-x86_64" - _ "github.com/bytecodealliance/wasmtime-go/v24/build/macos-aarch64" - _ "github.com/bytecodealliance/wasmtime-go/v24/build/macos-x86_64" - _ "github.com/bytecodealliance/wasmtime-go/v24/build/windows-x86_64" + _ "github.com/bytecodealliance/wasmtime-go/v25/build/include" + _ "github.com/bytecodealliance/wasmtime-go/v25/build/include/wasmtime" + _ "github.com/bytecodealliance/wasmtime-go/v25/build/linux-aarch64" + _ "github.com/bytecodealliance/wasmtime-go/v25/build/linux-x86_64" + _ "github.com/bytecodealliance/wasmtime-go/v25/build/macos-aarch64" + _ "github.com/bytecodealliance/wasmtime-go/v25/build/macos-x86_64" + _ "github.com/bytecodealliance/wasmtime-go/v25/build/windows-x86_64" )