Skip to content

Commit 80d210d

Browse files
authored
Merge pull request #236 from bytecodealliance/ydnar/v0.4.0
all: prepare for v0.4.0
2 parents 92fc9c7 + e05171f commit 80d210d

File tree

3 files changed

+13
-7
lines changed

3 files changed

+13
-7
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
44

5+
## [v0.4.0] — 2024-11-05
6+
7+
This module has been renamed. Going forward, please use `go.bytecodealliance.org` instead of `github.com/bytecodealliance/wasm-tools-go`.
8+
59
## [v0.3.1] — 2024-11-01
610

711
### Added
@@ -180,6 +184,8 @@ Initial version, supporting [TinyGo](https://tinygo.org/) + [WASI](https://wasi.
180184
- Because Go does not have a native tagged union type, pointers represented in `variant` and `result` types may not be visible to the garbage collector and may be freed while still in use.
181185
- Support for mainline [Go](https://go.dev/).
182186

187+
[Unreleased]: <https://github.com/bytecodealliance/go-modules/compare/v0.4.0..HEAD>
188+
[v0.4.0]: <https://github.com/bytecodealliance/go-modules/compare/v0.3.1..v0.4.0>
183189
[v0.3.1]: <https://github.com/bytecodealliance/go-modules/compare/v0.3.0..v0.3.1>
184190
[v0.3.0]: <https://github.com/bytecodealliance/go-modules/compare/v0.2.4..v0.3.0>
185191
[v0.2.4]: <https://github.com/bytecodealliance/go-modules/compare/v0.2.3..v0.2.4>

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
1-
# wasm-tools-go
1+
# go.bytecodealliance.org
22

3-
[![build status](https://img.shields.io/github/actions/workflow/status/bytecodealliance/wasm-tools-go/test.yaml?branch=main)](https://github.com/bytecodealliance/go-modules/actions)
4-
[![pkg.go.dev](https://img.shields.io/badge/docs-pkg.go.dev-blue.svg)](https://pkg.go.dev/github.com/bytecodealliance/wasm-tools-go)
3+
[![pkg.go.dev](https://img.shields.io/badge/docs-pkg.go.dev-blue.svg)](https://pkg.go.dev/go.bytecodealliance.org) [![build status](https://img.shields.io/github/actions/workflow/status/bytecodealliance/go-modules/test.yaml?branch=main)](https://github.com/bytecodealliance/go-modules/actions)
54

6-
## [WebAssembly](https://webassembly.org) + [WASI](https://wasi.dev) tools for [Go](https://go.dev)
5+
6+
A monorepo of [WebAssembly](https://webassembly.org), [WASI](https://wasi.dev), and [Component Model](https://component-model.bytecodealliance.org/) modules for [Go](https://go.dev) and [TinyGo](https://tinygo.org).
77

88
## About
99

10-
This repository contains code to generate Go bindings for [Component Model](https://component-model.bytecodealliance.org/) interfaces defined in [WIT](https://component-model.bytecodealliance.org/design/wit.html) (WebAssembly Interface Type) files. The goal of this project is to accelerate adoption of the Component Model and development of [WASI 0.2+](https://bytecodealliance.org/articles/WASI-0.2) in Go.
10+
This repository contains code to generate Go bindings for [Component Model](https://component-model.bytecodealliance.org/) interfaces defined in [WIT](https://component-model.bytecodealliance.org/design/wit.html) (WebAssembly Interface Type) files. A goal of this project is to accelerate adoption of the Component Model and development of [WASI 0.2+](https://bytecodealliance.org/articles/WASI-0.2) in Go.
1111

1212
### Component Model
1313

x/cabi/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
The `cabi` package contains a single exported WebAssembly function `cabi_realloc` ([Canonical ABI] realloc). To use, import this package with `_`:
44

5-
```
6-
import _ "github.com/bytecodealliance/wasm-tools-go/cabi"
5+
```go
6+
import _ "go.bytecodealliance.org/x/cabi"
77
```
88

99
`cabi_realloc` is a WebAssembly [core function](https://www.w3.org/TR/wasm-core-2/syntax/modules.html#functions) that is validated to have the following core function type:

0 commit comments

Comments
 (0)