Skip to content

Latest commit

 

History

History
13 lines (10 loc) · 829 Bytes

CHANGELOG.md

File metadata and controls

13 lines (10 loc) · 829 Bytes

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.

[0.8.0] - 2024-02-01

  • Breaking changes in asynch::ws module:
    • Replace the const N: usize parameter of all senders and receivers with a &'a mut [u8] buffer provided externally. Reason: this provides an option to (statically) pre-allocate the buffers outside of the async code thus resulting in futures' size reduction.
    • Re-implement the accept function as Acceptor::run, where Acceptor is a struct having these buffers managed internally
  • Breaking change: feature edge-net renamed to edge-ws
  • Depend on edge-ws instead of on all of the edge-net