Skip to content

Commit 0afb510

Browse files
authored
feat(anyspawn): release v0.2.0 (#325)
1 parent 5243f65 commit 0afb510

5 files changed

Lines changed: 14 additions & 8 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ homepage = "https://github.com/microsoft/oxidizer"
2323
[workspace.dependencies]
2424

2525
# local dependencies
26-
anyspawn = { path = "crates/anyspawn", default-features = false, version = "0.1.0" }
26+
anyspawn = { path = "crates/anyspawn", default-features = false, version = "0.2.0" }
2727
bytesbuf = { path = "crates/bytesbuf", default-features = false, version = "0.4.0" }
2828
bytesbuf_io = { path = "crates/bytesbuf_io", default-features = false, version = "0.4.0" }
2929
data_privacy = { path = "crates/data_privacy", default-features = false, version = "0.10.1" }

crates/anyspawn/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## [0.2.0] - 2026-03-17
4+
5+
- ⚠️ Breaking
6+
7+
- add `CustomSpawnerBuilder` for composing multi-layer spawners ([#308](https://github.com/microsoft/oxidizer/pull/308))
8+
39
## 0.1.0
410

511
Initial release.

crates/anyspawn/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
[package]
55
name = "anyspawn"
66
description = "A generic task spawner compatible with any async runtime."
7-
version = "0.1.0"
7+
version = "0.2.0"
88
readme = "README.md"
99
keywords = ["oxidizer", "async", "runtime", "futures"]
1010
categories = ["asynchronous"]

crates/anyspawn/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -60,8 +60,8 @@ let handle = spawner.spawn(async { 42 });
6060
This crate was developed as part of <a href="../..">The Oxidizer Project</a>. Browse this crate's <a href="https://github.com/microsoft/oxidizer/tree/main/crates/anyspawn">source code</a>.
6161
</sub>
6262

63-
[__cargo_doc2readme_dependencies_info]: ggGkYW0CYXSEGy4k8ldDFPOhG2VNeXtD5nnKG6EPY6OfW5wBG8g18NOFNdxpYXKEG4kogXIVaWzIG_FIsBdF8WN2G2_j-q32s9sZG1ijNLpXv0lkYWSBgmhhbnlzcGF3bmUwLjEuMA
64-
[__link0]: https://docs.rs/anyspawn/0.1.0/anyspawn/?search=Spawner
65-
[__link1]: https://docs.rs/anyspawn/0.1.0/anyspawn/?search=Spawner::new_tokio
66-
[__link2]: https://docs.rs/anyspawn/0.1.0/anyspawn/?search=Spawner::new_custom
67-
[__link3]: https://docs.rs/anyspawn/0.1.0/anyspawn/?search=CustomSpawnerBuilder
63+
[__cargo_doc2readme_dependencies_info]: ggGkYW0CYXSEGy4k8ldDFPOhG2VNeXtD5nnKG6EPY6OfW5wBG8g18NOFNdxpYXKEG4kogXIVaWzIG_FIsBdF8WN2G2_j-q32s9sZG1ijNLpXv0lkYWSBgmhhbnlzcGF3bmUwLjIuMA
64+
[__link0]: https://docs.rs/anyspawn/0.2.0/anyspawn/?search=Spawner
65+
[__link1]: https://docs.rs/anyspawn/0.2.0/anyspawn/?search=Spawner::new_tokio
66+
[__link2]: https://docs.rs/anyspawn/0.2.0/anyspawn/?search=Spawner::new_custom
67+
[__link3]: https://docs.rs/anyspawn/0.2.0/anyspawn/?search=CustomSpawnerBuilder

0 commit comments

Comments
 (0)