Skip to content

Commit 6a79919

Browse files
committed
release v0.7.0
1 parent 9d52735 commit 6a79919

File tree

5 files changed

+12
-4
lines changed

5 files changed

+12
-4
lines changed

Cargo.toml

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,21 @@ members = [
88
]
99

1010
[workspace.package]
11-
version = "0.6.15"
11+
version = "0.7.0"
1212
edition = "2021"
1313
authors = ["[email protected]"]
1414
repository = "https://github.com/acl-dev/open-coroutine"
1515
license = "Apache-2.0"
1616
readme = "README.md"
17+
exclude = [
18+
"**/*.DS_Store",
19+
"*.DS_Store"
20+
]
1721

1822
[workspace.dependencies]
19-
open-coroutine-core = { path = "core", version = "0.6.14" }
20-
open-coroutine-hook = { path = "hook", version = "0.6.14" }
21-
open-coroutine-macros = { path = "macros", version = "0.6.14" }
23+
open-coroutine-core = { path = "core", version = "0.7.0" }
24+
open-coroutine-hook = { path = "hook", version = "0.7.0" }
25+
open-coroutine-macros = { path = "macros", version = "0.7.0" }
2226

2327
tracing = { version = "0.1", default-features = false }
2428
tracing-subscriber = { version = "0.3", default-features = false }

core/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ keywords = ["runtime", "coroutine", "hook", "preempt", "work-steal"]
99
categories = ["concurrency", "asynchronous", "os", "network-programming", "wasm"]
1010
license.workspace = true
1111
readme.workspace = true
12+
exclude.workspace = true
1213

1314
[dependencies]
1415
tracing = { workspace = true, default-features = false, optional = true }

hook/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ keywords = ["open-coroutine", "hook", "syscall"]
99
categories = ["os", "concurrency", "asynchronous"]
1010
license.workspace = true
1111
readme.workspace = true
12+
exclude.workspace = true
1213

1314
[dependencies]
1415
once_cell.workspace = true

macros/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ keywords = ["open-coroutine", "macro"]
88
categories = ["concurrency", "asynchronous", "os", "network-programming", "wasm"]
99
license.workspace = true
1010
readme.workspace = true
11+
exclude.workspace = true
1112

1213
[dependencies]
1314
syn = { workspace = true, features = ["full"] }

open-coroutine/Cargo.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ keywords = ["coroutine", "fiber", "stackfull", "hook"]
99
categories = ["data-structures", "concurrency", "asynchronous", "web-programming", "wasm"]
1010
license.workspace = true
1111
readme.workspace = true
12+
exclude.workspace = true
1213

1314
[dependencies]
1415
libc.workspace = true

0 commit comments

Comments
 (0)