-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix base case for wit-parser's variant alignment (#951)
* Fix base case for wit-parser's variant alignment This fixes a bug in #948 discovered by wit-bindgen's test suite which I forgot to run prior to landing it here. Historically much of the ABI code in `wit-parser` was tested by `wit-bindgen` but after the extraction there is no testing of it in this repository, so this is something we'll want to improve in the future. This commit additionally includes a minor version bump for the wit-parser crate. * Bump wit-parser's version
- Loading branch information
1 parent
1d75a98
commit 861bfaa
Showing
4 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "wit-component" | ||
authors = ["Peter Huene <[email protected]>"] | ||
version = "0.7.2" | ||
version = "0.7.3" | ||
edition.workspace = true | ||
license = "Apache-2.0 WITH LLVM-exception" | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "wit-parser" | ||
authors = ["Alex Crichton <[email protected]>"] | ||
version = "0.6.3" | ||
version = "0.6.4" | ||
edition.workspace = true | ||
license = "Apache-2.0 WITH LLVM-exception" | ||
readme = "README.md" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters