- Moved away from function pointer tables for loading PyAwaitable--everything is now vendored upon installation.
- Improved performance with compiler optimizations.
- `PyAwaitable_` prefixes are now required, and the old `pyawaitable_*` functions have been removed.
- The warning emitted when a PyAwaitable object is not awaited is now a `ResourceWarning` (was a `RuntimeWarning`).
- `PyAwaitable_AddAwait` now raises a `ValueError` if the passed object is `NULL` or self, and also now raises a `TypeError` if the passed object is not a coroutine.
- Added a simple CLI, primarily for getting the include directory from `meson-python` (`pyawaitable --include`).
- PyAwaitable objects now support garbage collection.
- **Breaking Change:** `PyAwaitable_Init` no longer takes a module object.
- **Breaking Change:** Renamed `awaitcallback` to `PyAwaitable_Callback`
- **Breaking Change:** Renamed `awaitcallback_err` to `PyAwaitable_Error`
- **Breaking Change:** Renamed `defercallback` to `PyAwaitable_Defer`
- **Breaking Change:** Removed the integer value APIs (`SaveIntValues`, `LoadIntValues`, `SetIntValue`, `GetIntValue`). They proved to be maintenance heavy, unintuitive, and most of all replaceable with the arbitrary values API (via `malloc`ing an integer and storing it).