Skip to content

Commit 9960220

Browse files
committed
Bump version for patch release
Signed-off-by: Brian Hardock <[email protected]>
1 parent ad332b8 commit 9960220

File tree

8 files changed

+17
-16
lines changed

8 files changed

+17
-16
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.9.0-dev"
13+
version = "0.8.1"
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.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" }
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" }
6666
wit-parser = "0.239.0"
6767
wasmparser = "0.239.0"
6868
wit-component = "0.239.0"

RELEASE.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ To cut a new release, you will need to do the following:
44

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

7-
2. Change the workspace version number in [Cargo.toml](./Cargo.toml).
7+
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"))```
89

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

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.9.0-dev")
49+
(processed-by "wac-parser" "0.8.1")
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.9.0-dev")
87+
(processed-by "wac-parser" "0.8.1")
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.9.0-dev")
50+
(processed-by "wac-parser" "0.8.1")
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.9.0-dev")
53+
(processed-by "wac-parser" "0.8.1")
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.9.0-dev")
174+
(processed-by "wac-parser" "0.8.1")
175175
)
176176
)

0 commit comments

Comments
 (0)