From 6a79919db09e6d37fbb1f9215f84bab82d763235 Mon Sep 17 00:00:00 2001 From: dragon-zhang Date: Wed, 28 May 2025 10:48:00 +0800 Subject: [PATCH] release v0.7.0 --- Cargo.toml | 12 ++++++++---- core/Cargo.toml | 1 + hook/Cargo.toml | 1 + macros/Cargo.toml | 1 + open-coroutine/Cargo.toml | 1 + 5 files changed, 12 insertions(+), 4 deletions(-) diff --git a/Cargo.toml b/Cargo.toml index f7cf8ba1..51a3cc60 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -8,17 +8,21 @@ members = [ ] [workspace.package] -version = "0.6.15" +version = "0.7.0" edition = "2021" authors = ["zhangzicheng@apache.org"] repository = "https://github.com/acl-dev/open-coroutine" license = "Apache-2.0" readme = "README.md" +exclude = [ + "**/*.DS_Store", + "*.DS_Store" +] [workspace.dependencies] -open-coroutine-core = { path = "core", version = "0.6.14" } -open-coroutine-hook = { path = "hook", version = "0.6.14" } -open-coroutine-macros = { path = "macros", version = "0.6.14" } +open-coroutine-core = { path = "core", version = "0.7.0" } +open-coroutine-hook = { path = "hook", version = "0.7.0" } +open-coroutine-macros = { path = "macros", version = "0.7.0" } tracing = { version = "0.1", default-features = false } tracing-subscriber = { version = "0.3", default-features = false } diff --git a/core/Cargo.toml b/core/Cargo.toml index 11c95328..14b378d2 100644 --- a/core/Cargo.toml +++ b/core/Cargo.toml @@ -9,6 +9,7 @@ keywords = ["runtime", "coroutine", "hook", "preempt", "work-steal"] categories = ["concurrency", "asynchronous", "os", "network-programming", "wasm"] license.workspace = true readme.workspace = true +exclude.workspace = true [dependencies] tracing = { workspace = true, default-features = false, optional = true } diff --git a/hook/Cargo.toml b/hook/Cargo.toml index 7dfca4d3..e312f7fa 100644 --- a/hook/Cargo.toml +++ b/hook/Cargo.toml @@ -9,6 +9,7 @@ keywords = ["open-coroutine", "hook", "syscall"] categories = ["os", "concurrency", "asynchronous"] license.workspace = true readme.workspace = true +exclude.workspace = true [dependencies] once_cell.workspace = true diff --git a/macros/Cargo.toml b/macros/Cargo.toml index f44bfc73..973b1529 100644 --- a/macros/Cargo.toml +++ b/macros/Cargo.toml @@ -8,6 +8,7 @@ keywords = ["open-coroutine", "macro"] categories = ["concurrency", "asynchronous", "os", "network-programming", "wasm"] license.workspace = true readme.workspace = true +exclude.workspace = true [dependencies] syn = { workspace = true, features = ["full"] } diff --git a/open-coroutine/Cargo.toml b/open-coroutine/Cargo.toml index 9615f8bc..4de06959 100644 --- a/open-coroutine/Cargo.toml +++ b/open-coroutine/Cargo.toml @@ -9,6 +9,7 @@ keywords = ["coroutine", "fiber", "stackfull", "hook"] categories = ["data-structures", "concurrency", "asynchronous", "web-programming", "wasm"] license.workspace = true readme.workspace = true +exclude.workspace = true [dependencies] libc.workspace = true