Skip to content

Commit ca719d0

Browse files
committed
Bump versions for spawns-core,spawns-compat and spawns
1 parent 69a7121 commit ca719d0

File tree

5 files changed

+8
-8
lines changed

5 files changed

+8
-8
lines changed

examples/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,6 @@ path = "echo.rs"
1414
[dependencies]
1515
async-executor = "1.11.0"
1616
async-net = "2.0.0"
17-
spawns = { path = "../spawns", version = "0.2.1", features = ["executor"]}
17+
spawns = { path = "../spawns", version = "0.2.2", features = ["executor"]}
1818
futures-lite = "2.3.0"
1919
clap = "4.5.4"

spawns-compat/Cargo.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spawns-compat"
3-
version = "0.2.0"
3+
version = "0.2.1"
44
readme.workspace = true
55
authors.workspace = true
66
edition.workspace = true
@@ -18,7 +18,7 @@ async-global-executor = ["linkme", "spawns-core/compat", "dep:async-global-execu
1818
[dependencies]
1919
linkme = { version = "0.3.25", optional = true }
2020
smol = { version = "2.0.0", optional = true }
21-
spawns-core = { path = "../spawns-core", version = "1.0.2", optional = true }
21+
spawns-core = { path = "../spawns-core", version = "1.1.0", optional = true }
2222
tokio = { version = "1", features = ["rt"], optional = true }
2323
async-global-executor = { version = "2", optional = true }
2424

spawns-core/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spawns-core"
3-
version = "1.0.2"
3+
version = "1.1.0"
44
readme.workspace = true
55
authors.workspace = true
66
edition.workspace = true

spawns-executor/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ description = "Async executors for thread context task spawner"
1313
async-executor = "1.11.0"
1414
async-shutdown = "0.2.2"
1515
futures = { version = "0.3.30" }
16-
spawns-core = { path = "../spawns-core", version = "1.0.2" }
16+
spawns-core = { path = "../spawns-core", version = "1.1.0" }
1717

1818
[dev-dependencies]
1919
async-io = "2.3.2"

spawns/Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "spawns"
3-
version = "0.2.1"
3+
version = "0.2.2"
44
readme.workspace = true
55
authors.workspace = true
66
edition.workspace = true
@@ -18,8 +18,8 @@ async-global-executor = ["spawns-compat/async-global-executor"]
1818
panic-multiple-global-spawners = ["spawns-core/panic-multiple-global-spawners"]
1919

2020
[dependencies]
21-
spawns-core = { path = "../spawns-core", version = "1.0.2" }
22-
spawns-compat = { path = "../spawns-compat", version = "0.2.0", optional = true }
21+
spawns-core = { path = "../spawns-core", version = "1.1.0" }
22+
spawns-compat = { path = "../spawns-compat", version = "0.2.1", optional = true }
2323
spawns-executor = { path = "../spawns-executor", version = "0.1.1", optional = true }
2424

2525
[dev-dependencies]

0 commit comments

Comments
 (0)