Skip to content

Commit 9beec0d

Browse files
Merge pull request #184 from bytecodealliance/next-version
Bump version for next anticipated release
2 parents 7edfefe + 4a969f1 commit 9beec0d

File tree

9 files changed

+17
-17
lines changed

9 files changed

+17
-17
lines changed

Cargo.lock

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ keywords = { workspace = true }
1010
repository = { workspace = true }
1111

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

6161
[workspace.dependencies]
62-
wac-parser = { path = "crates/wac-parser", version = "0.8.1", default-features = false }
63-
wac-resolver = { path = "crates/wac-resolver", version = "0.8.1", default-features = false }
64-
wac-graph = { path = "crates/wac-graph", version = "0.8.1" }
65-
wac-types = { path = "crates/wac-types", version = "0.8.1" }
62+
wac-parser = { path = "crates/wac-parser", version = "0.9.0-dev", default-features = false }
63+
wac-resolver = { path = "crates/wac-resolver", version = "0.9.0-dev", default-features = false }
64+
wac-graph = { path = "crates/wac-graph", version = "0.9.0-dev" }
65+
wac-types = { path = "crates/wac-types", version = "0.9.0-dev" }
6666
wit-parser = "0.239.0"
6767
wasmparser = "0.239.0"
6868
wit-component = "0.239.0"

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ To cut a new release, you will need to do the following:
55
1. Confirm that [CI is green](https://github.com/bytecodealliance/wac/actions) for the commit selected to be tagged and released.
66

77
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.:
8-
``` (@producers (processed-by "wac-parser" "0.8.0"))```
8+
``` (@producers (processed-by "wac-parser" "0.8.0"))```. NOTE: Running `BLESS=1 cargo test --workspace` will regenerate most of these.
99

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

crates/wac-parser/tests/encoding/include-resource.wac.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,6 @@
4646
)
4747
)
4848
(@producers
49-
(processed-by "wac-parser" "0.8.1")
49+
(processed-by "wac-parser" "0.9.0-dev")
5050
)
5151
)

crates/wac-parser/tests/encoding/instantiation.wac.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,6 @@
8484
(alias export $x4 "foo" (func (;3;)))
8585
(export (;4;) "foo" (func 3))
8686
(@producers
87-
(processed-by "wac-parser" "0.8.1")
87+
(processed-by "wac-parser" "0.9.0-dev")
8888
)
8989
)

crates/wac-parser/tests/encoding/merged-functions.wac.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,6 @@
4747
)
4848
)
4949
(@producers
50-
(processed-by "wac-parser" "0.8.1")
50+
(processed-by "wac-parser" "0.9.0-dev")
5151
)
5252
)

crates/wac-parser/tests/encoding/resources.wac.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@
5050
(alias export $x "foo" (instance (;2;)))
5151
(export (;3;) "foo" (instance 2))
5252
(@producers
53-
(processed-by "wac-parser" "0.8.1")
53+
(processed-by "wac-parser" "0.9.0-dev")
5454
)
5555
)

crates/wac-parser/tests/encoding/types.wac.result

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -171,6 +171,6 @@
171171
(export $p2 (;59;) "p2" (type $p))
172172
(export $q2 (;60;) "q2" (type $q))
173173
(@producers
174-
(processed-by "wac-parser" "0.8.1")
174+
(processed-by "wac-parser" "0.9.0-dev")
175175
)
176176
)

crates/wac-resolver/tests/registry.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,7 @@ export i2.foo as "bar";
113113
(export (;6;) "test:wit/foo" (instance 4))
114114
(export (;7;) "bar" (instance 5))
115115
(@producers
116-
(processed-by "wac-parser" "0.8.1")
116+
(processed-by "wac-parser" "0.9.0-dev")
117117
)
118118
)
119119
"#

0 commit comments

Comments
 (0)