Skip to content

Commit f191348

Browse files
authored
Merge pull request #30 from yoshuawuyts/pch/release-0.5.0-draft1
bump version to 0.5.0-draft1
2 parents d64aedd + ee84034 commit f191348

File tree

2 files changed

+16
-7
lines changed

2 files changed

+16
-7
lines changed

Cargo.toml

Lines changed: 11 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,9 @@ documentation = "https://docs.rs/wstd"
66
description = "An async standard library for Wasm Components and WASI 0.2"
77
readme = "README.md"
88
edition.workspace = true
9-
keywords = ["WebAssembly", "async", "stdlib", "Components"]
10-
categories = []
11-
authors = [
12-
"Yoshua Wuyts <[email protected]>"
13-
]
9+
authors.workspace = true
10+
keywords.workspace = true
11+
categories.workspace = true
1412

1513
[features]
1614

@@ -36,10 +34,16 @@ members = [
3634
resolver = "2"
3735

3836
[workspace.package]
39-
version = "0.4.0"
37+
version = "0.5.0-draft1"
4038
edition = "2021"
4139
license = "MIT OR Apache-2.0 OR Apache-2.0 WITH LLVM-exception"
4240
repository = "https://github.com/yoshuawuyts/wstd"
41+
keywords = ["WebAssembly", "async", "stdlib", "Components"]
42+
categories = []
43+
authors = [
44+
"Yoshua Wuyts <[email protected]>",
45+
"Pat Hickey <[email protected]>",
46+
]
4347

4448
[workspace.dependencies]
4549
anyhow = "1"
@@ -61,4 +65,4 @@ wasmtime = "26"
6165
wasmtime-wasi = "26"
6266
wasmtime-wasi-http = "26"
6367
wstd = { path = "." }
64-
wstd-macro = { path = "macro" }
68+
wstd-macro = { path = "macro", version = "=0.5.0-draft1" }

macro/Cargo.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ name = "wstd-macro"
33
version.workspace = true
44
edition.workspace = true
55
license.workspace = true
6+
authors.workspace = true
7+
keywords.workspace = true
8+
categories.workspace = true
9+
description = "proc-macros for the wstd crate"
10+
documentation = "https://docs.rs/wstd-macro"
611

712
[lib]
813
proc-macro = true

0 commit comments

Comments
 (0)