Skip to content

Commit 0e3b31e

Browse files
authored
Merge pull request #320 from bytecodealliance/ydnar/v0.6.2
all: prepare for v0.6.2
2 parents 331e70d + 31dce5f commit 0e3b31e

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

CHANGELOG.md

+4-2
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,12 @@
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-
## [Unreleased]
5+
## [v0.6.2] — 2025-03-16
66

77
### Fixed
88

99
- Files generated by `wit-bindgen-go generate` no longer have the execute bit set.
10+
- Updated package `cm` to [v0.2.2](https://github.com/bytecodealliance/go-modules/releases/tag/cm%2Fv0.2.2) with error handling fixes.
1011

1112
## [v0.6.1] — 2025-03-16
1213

@@ -243,7 +244,8 @@ Initial version, supporting [TinyGo](https://tinygo.org/) + [WASI](https://wasi.
243244
- 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.
244245
- Support for mainline [Go](https://go.dev/).
245246

246-
[Unreleased]: <https://github.com/bytecodealliance/go-modules/compare/v0.6.1..HEAD>
247+
[Unreleased]: <https://github.com/bytecodealliance/go-modules/compare/v0.6.2..HEAD>
248+
[v0.6.2]: <https://github.com/bytecodealliance/go-modules/compare/v0.6.1..v0.6.2>
247249
[v0.6.1]: <https://github.com/bytecodealliance/go-modules/compare/v0.6.0..v0.6.1>
248250
[v0.6.0]: <https://github.com/bytecodealliance/go-modules/compare/v0.5.0..v0.6.0>
249251
[v0.5.0]: <https://github.com/bytecodealliance/go-modules/compare/v0.4.1..v0.5.0>

go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/sergi/go-diff v1.3.1
99
github.com/tetratelabs/wazero v1.9.0
1010
github.com/urfave/cli/v3 v3.0.0-beta1
11-
go.bytecodealliance.org/cm v0.2.1
11+
go.bytecodealliance.org/cm v0.2.2
1212
golang.org/x/mod v0.23.0
1313
golang.org/x/tools v0.30.0
1414
)

go.sum

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ github.com/ulikunitz/xz v0.5.12 h1:37Nm15o69RwBkXM0J6A5OlE67RZTfzUxTj8fB3dfcsc=
3535
github.com/ulikunitz/xz v0.5.12/go.mod h1:nbz6k7qbPmH4IRqmfOplQw/tblSgqTqBwxkY0oWt/14=
3636
github.com/urfave/cli/v3 v3.0.0-beta1 h1:6DTaaUarcM0wX7qj5Hcvs+5Dm3dyUTBbEwIWAjcw9Zg=
3737
github.com/urfave/cli/v3 v3.0.0-beta1/go.mod h1:FnIeEMYu+ko8zP1F9Ypr3xkZMIDqW3DR92yUtY39q1Y=
38-
go.bytecodealliance.org/cm v0.2.1 h1:sFUQRPfM+ku7hKgFwxGdwjghv4QtTLukpqsAHgE1Tek=
39-
go.bytecodealliance.org/cm v0.2.1/go.mod h1:JD5vtVNZv7sBoQQkvBvAAVKJPhR/bqBH7yYXTItMfZI=
38+
go.bytecodealliance.org/cm v0.2.2 h1:M9iHS6qs884mbQbIjtLX1OifgyPG9DuMs2iwz8G4WQA=
39+
go.bytecodealliance.org/cm v0.2.2/go.mod h1:JD5vtVNZv7sBoQQkvBvAAVKJPhR/bqBH7yYXTItMfZI=
4040
golang.org/x/mod v0.23.0 h1:Zb7khfcRGKk+kqfxFaP5tZqCnDZMjC5VtUBs87Hr6QM=
4141
golang.org/x/mod v0.23.0/go.mod h1:6SkKJ3Xj0I0BrPOZoBy3bdMptDDU9oJrpohJ3eWZ1fY=
4242
golang.org/x/sync v0.11.0 h1:GGz8+XQP4FvTTrjZPzNKTMFtSXH80RAzG+5ghFPgK9w=

0 commit comments

Comments
 (0)