Documentation
# 0.2.2 (Aug 7 2026)

- Updated repository link to codeberg

# 0.2.1 (Jul 27 2026)

- Disabled accidently enabled-by-default `unstable` flag
- Ensured that docs.rs builds with all features

# 0.2.0 (Jul 27 2026)

- Introduced a module system
  - Enable a module by adding it as a feature when declaring the library as a dependency or use the `all` feature to enable all modules
  - `all` is enabled by default
- Added a `macros` module
  - Contains all macros
  - Not public, but all macros are available at the crate root
- Moved `select!` to the `macros` module
- Added a `cli` module for command line utilities
  - Added unstable CLI argument parsing behind the `unstable-cli-parse-args` feature
    - Also enables `cli` and `alloc`
- Added an `alloc` feature
  - Enabled by default
  - Enables functionality that depends on the `alloc` crate, including macros
- Added an `unstable` feature
  - Disabled by default
  - Enables functionality considered unstable
  - These APIs may change, behave differently, or be removed in future versions
  - Whenever possible, use specific `unstable-` features rather than this one
  - Use with caution

# 0.1.0 (Feb 27 2026)

- Initial release