Skip to content

Latest commit

 

History

History
43 lines (29 loc) · 1.65 KB

CHANGELOG.md

File metadata and controls

43 lines (29 loc) · 1.65 KB

Changelog

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.

  • Disable all blocking functions on Wasm, since you are not allowed to block in a browser

0.3.0 - 2023-08-27

Added

  • Support async-std executor #15
  • smol feature to enable the use of smol
  • refactor Promise::spawn_async into two new functions, Promise::spawn_async and Promise::spawn_local
  • smol_tick_poll feature to automatically tick the smol executor when polling promises

Changed

  • spawn_async is now called spawn_local on web.

0.2.1 - 2023-09-29

Fixed

  • Undefined behavior in PromiseImpl::poll and PromiseImpl::block_until_ready

0.2.0 - 2022-10-25

Added

0.1.0 - 2022-01-10

Added

  • Initial commit - add the Promise type.