Skip to content

Commit

Permalink
set version 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
calvinrp committed Jul 9, 2024
1 parent 1d314b0 commit ff64a5e
Show file tree
Hide file tree
Showing 9 changed files with 17 additions and 17 deletions.
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.4.0-dev"
version = "0.4.0"
edition = "2021"
authors = ["Peter Huene <[email protected]>"]
license = "Apache-2.0 WITH LLVM-exception"
Expand Down Expand Up @@ -52,10 +52,10 @@ native-tls-vendored = ["warg-client?/native-tls-vendored"]
members = ["examples/programmatic"]

[workspace.dependencies]
wac-parser = { path = "crates/wac-parser", version = "0.4.0-dev", default-features = false }
wac-resolver = { path = "crates/wac-resolver", version = "0.4.0-dev", default-features = false }
wac-graph = { path = "crates/wac-graph", version = "0.4.0-dev" }
wac-types = { path = "crates/wac-types", version = "0.4.0-dev" }
wac-parser = { path = "crates/wac-parser", version = "0.4.0", default-features = false }
wac-resolver = { path = "crates/wac-resolver", version = "0.4.0", default-features = false }
wac-graph = { path = "crates/wac-graph", version = "0.4.0" }
wac-types = { path = "crates/wac-types", version = "0.4.0" }
wit-parser = "0.202.0"
wasmparser = "0.202.0"
wit-component = "0.202.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,6 @@
)
)
(@producers
(processed-by "wac-parser" "0.4.0-dev")
(processed-by "wac-parser" "0.4.0")
)
)
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.4.0-dev")
(processed-by "wac-parser" "0.4.0")
)
)
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
)
)
(@producers
(processed-by "wac-parser" "0.4.0-dev")
(processed-by "wac-parser" "0.4.0")
)
)
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.4.0-dev")
(processed-by "wac-parser" "0.4.0")
)
)
2 changes: 1 addition & 1 deletion crates/wac-parser/tests/encoding/resources/foo/bar.wat
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@
(import "foo" (instance (;0;) (type 0)))
(export "foo" (instance 0))
(@producers
(processed-by "wac-parser" "0.4.0-dev")
(processed-by "wac-parser" "0.4.0")
)
)
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.4.0-dev")
(processed-by "wac-parser" "0.4.0")
)
)
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.4.0-dev")
(processed-by "wac-parser" "0.4.0")
)
)
"#
Expand Down

0 comments on commit ff64a5e

Please sign in to comment.