Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 5 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ keywords = { workspace = true }
repository = { workspace = true }

[workspace.package]
version = "0.9.0-dev"
version = "0.8.1"
edition = "2021"
authors = ["Peter Huene <[email protected]>"]
license = "Apache-2.0 WITH LLVM-exception"
Expand Down Expand Up @@ -59,10 +59,10 @@ native-tls-vendored = ["warg-client?/native-tls-vendored"]
members = ["examples/programmatic"]

[workspace.dependencies]
wac-parser = { path = "crates/wac-parser", version = "0.9.0-dev", default-features = false }
wac-resolver = { path = "crates/wac-resolver", version = "0.9.0-dev", default-features = false }
wac-graph = { path = "crates/wac-graph", version = "0.9.0-dev" }
wac-types = { path = "crates/wac-types", version = "0.9.0-dev" }
wac-parser = { path = "crates/wac-parser", version = "0.8.1", default-features = false }
wac-resolver = { path = "crates/wac-resolver", version = "0.8.1", default-features = false }
wac-graph = { path = "crates/wac-graph", version = "0.8.1" }
wac-types = { path = "crates/wac-types", version = "0.8.1" }
wit-parser = "0.239.0"
wasmparser = "0.239.0"
wit-component = "0.239.0"
Expand Down
3 changes: 2 additions & 1 deletion RELEASE.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ To cut a new release, you will need to do the following:

1. Confirm that [CI is green](https://github.com/bytecodealliance/wac/actions) for the commit selected to be tagged and released.

2. Change the workspace version number in [Cargo.toml](./Cargo.toml).
2. Change the workspace version number in [Cargo.toml](./Cargo.toml) and the versions for the crates in the workspace dependencies (e.g. `wac-parser`). Additionally change the version in the result `wat` files that include a `producers` section. E.g.:
``` (@producers (processed-by "wac-parser" "0.8.0"))```

3. Create a pull request with these changes and merge once approved.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@
)
)
(@producers
(processed-by "wac-parser" "0.9.0-dev")
(processed-by "wac-parser" "0.8.1")
)
)
2 changes: 1 addition & 1 deletion crates/wac-parser/tests/encoding/instantiation.wac.result
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,6 @@
(alias export $x4 "foo" (func (;3;)))
(export (;4;) "foo" (func 3))
(@producers
(processed-by "wac-parser" "0.9.0-dev")
(processed-by "wac-parser" "0.8.1")
)
)
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
)
)
(@producers
(processed-by "wac-parser" "0.9.0-dev")
(processed-by "wac-parser" "0.8.1")
)
)
2 changes: 1 addition & 1 deletion crates/wac-parser/tests/encoding/resources.wac.result
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@
(alias export $x "foo" (instance (;2;)))
(export (;3;) "foo" (instance 2))
(@producers
(processed-by "wac-parser" "0.9.0-dev")
(processed-by "wac-parser" "0.8.1")
)
)
2 changes: 1 addition & 1 deletion crates/wac-parser/tests/encoding/types.wac.result
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,6 @@
(export $p2 (;59;) "p2" (type $p))
(export $q2 (;60;) "q2" (type $q))
(@producers
(processed-by "wac-parser" "0.9.0-dev")
(processed-by "wac-parser" "0.8.1")
)
)
2 changes: 1 addition & 1 deletion crates/wac-resolver/tests/registry.rs
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export i2.foo as "bar";
(export (;6;) "test:wit/foo" (instance 4))
(export (;7;) "bar" (instance 5))
(@producers
(processed-by "wac-parser" "0.9.0-dev")
(processed-by "wac-parser" "0.8.1")
)
)
"#
Expand Down