Skip to content

v0.11.0

Latest

Choose a tag to compare

@nuzzles nuzzles released this 12 Dec 05:34
· 4 commits to main since this release
7a474a5

0.11.0 - 2025-12-12

  • This release supports Bevy 0.17.

Added

  • Added AsyncStream and TaskStream, functional equivalents of AsyncTask and TaskRunner for streams (aka async iterators). See the streaming example.
  • Added .forget() to TaskRunner and TimedTaskRunner.
  • Added .forget_all() to TaskPool and TimedTaskPool.

Removed

  • Removed Deref from TaskRunner and TimedTaskRunner.
  • Removed DerefMut from TaskRunner and TimedTaskRunner.

Fixed

  • It was possible to use a duration over i32::MAX in millis for AsyncTask::with_duration(&mut self).