Skip to content

Latest commit

 

History

History
36 lines (22 loc) · 1.1 KB

CHANGELOG.md

File metadata and controls

36 lines (22 loc) · 1.1 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.

2.1.0 - 2024-04-26

  • Added ConstStaticCell (#14)

2.0.0 - 2023-11-02

  • Do not enable feature critical-section in portable-atomic. In targets that need atomic polyfilling, you now need to explicitly enable either of critical-section or unsafe-assume-single-core in portable-atomic.

1.3.0 - 2023-11-02

  • Switch from atomic-polyfill to portable-atomic. Note: to be backwards compatible this crate is enabling the critical-section feature in portable-atomic. If your chip is single-core, you might want to upgrade to static-cell v2.0 so you can enable the feature unsafe-assume-single-core instead, which is slightly more efficient.

1.2.0 - 2023-07-03

  • Add panic-free try_init(), try_init_with(), try_uninit().

1.1.0 - 2023-06-01

  • Add uninit().
  • Add make_static! macro.

1.0.0 - 2022-08-22

  • First release