diff --git a/Cargo.toml b/Cargo.toml index b018142..5f21007 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -4,7 +4,7 @@ members = ["asyncs-test", "asyncs-sync"] [workspace.package] license = "Apache-2.0" -version = "0.2.1" +version = "0.3.0" edition = "2021" authors = ["Kezhu Wang "] homepage = "https://github.com/kezhuw/asyncs" @@ -37,8 +37,8 @@ spawns-compat = ["spawns-core/compat"] [dependencies] async-select = "0.2.0" -asyncs-test = { version = "0.2.1", path = "./asyncs-test", optional = true } -asyncs-sync = { version = "0.2.1", path = "./asyncs-sync" } +asyncs-test = { version = "0.3.0", path = "./asyncs-test", optional = true } +asyncs-sync = { version = "0.3.0", path = "./asyncs-sync" } spawns = { version = "0.2.4", optional = true } spawns-core = "1.1.1" diff --git a/asyncs-sync/Cargo.toml b/asyncs-sync/Cargo.toml index 020ac48..39a2398 100644 --- a/asyncs-sync/Cargo.toml +++ b/asyncs-sync/Cargo.toml @@ -13,5 +13,5 @@ documentation.workspace = true [dependencies] [dev-dependencies] -asyncs = { version = "0.2.1", path = "../", features = ["test"] } +asyncs = { version = "0.3.0", path = "../", features = ["test"] } futures = "0.3.30"