Skip to content

Commit 191a66c

Browse files
authored
chore(anyspawn): release new version of anyspawn (#344)
1 parent 0ebcc2d commit 191a66c

5 files changed

Lines changed: 21 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.2.0" }
26+
anyspawn = { path = "crates/anyspawn", default-features = false, version = "0.3.0" }
2727
bytesbuf = { path = "crates/bytesbuf", default-features = false, version = "0.4.1" }
2828
bytesbuf_io = { path = "crates/bytesbuf_io", default-features = false, version = "0.4.0" }
2929
cachet = { path = "crates/cachet", default-features = false, version = "0.1.0" }

crates/anyspawn/CHANGELOG.md

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

3+
## [0.3.0] - 2026-03-27
4+
5+
- ✨ Features
6+
7+
- make Spawner usable without features ([#343](https://github.com/microsoft/oxidizer/pull/343))
8+
- allow creating spawner using tokio handle ([#341](https://github.com/microsoft/oxidizer/pull/341))
9+
- the Spawner is now thread aware ([#330](https://github.com/microsoft/oxidizer/pull/330))
10+
11+
- ⚠️ Breaking
12+
13+
- the crate does not have any default features enabled anymore
14+
- the custom spawner is now always available
15+
316
## [0.2.0] - 2026-03-17
417

518
- ⚠️ Breaking

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.2.0"
7+
version = "0.3.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
@@ -68,10 +68,10 @@ details and examples.
6868
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>.
6969
</sub>
7070

71-
[__cargo_doc2readme_dependencies_info]: ggGmYW0CYXZlMC43LjJhdIQbLiTyV0MU86EbZU15e0PmecoboQ9jo59bnAEbyDXw04U13GlhYvRhcoQb2kzPFSWDwP0bFmeuSlBPmOYbJhoG25idR60bDe4xDajaP_lhZIKCaGFueXNwYXduZTAuMi4wgmx0aHJlYWRfYXdhcmVlMC42LjI
72-
[__link0]: https://docs.rs/anyspawn/0.2.0/anyspawn/?search=Spawner
71+
[__cargo_doc2readme_dependencies_info]: ggGkYW0CYXSEGy4k8ldDFPOhG2VNeXtD5nnKG6EPY6OfW5wBG8g18NOFNdxpYXKEG9pMzxUlg8D9GxZnrkpQT5jmGyYaBtuYnUetGw3uMQ2o2j_5YWSCgmhhbnlzcGF3bmUwLjMuMIJsdGhyZWFkX2F3YXJlZTAuNi4y
72+
[__link0]: https://docs.rs/anyspawn/0.3.0/anyspawn/?search=Spawner
7373
[__link1]: https://docs.rs/thread_aware/0.6.2/thread_aware/?search=ThreadAware
74-
[__link2]: https://docs.rs/anyspawn/0.2.0/anyspawn/?search=Spawner::new_thread_aware
74+
[__link2]: https://docs.rs/anyspawn/0.3.0/anyspawn/?search=Spawner::new_thread_aware
7575
[__link3]: Spawner#thread-aware-support
76-
[__link4]: https://docs.rs/anyspawn/0.2.0/anyspawn/?search=Spawner::new_tokio
77-
[__link5]: https://docs.rs/anyspawn/0.2.0/anyspawn/?search=Spawner::new_tokio_with_handle
76+
[__link4]: https://docs.rs/anyspawn/0.3.0/anyspawn/?search=Spawner::new_tokio
77+
[__link5]: https://docs.rs/anyspawn/0.3.0/anyspawn/?search=Spawner::new_tokio_with_handle

0 commit comments

Comments
 (0)