diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d8ed04..8ccdddb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,6 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 > breaking changes may be introduced > at any time without warning. +## [0.1.8] - 2024-06-05 + +### Fixed + +- Fixed an incorrect `import` shim in `_typing.py`, + resulting in the library failing to import on Python 3.12. + ## [0.1.7] - 2024-06-05 ### Changed diff --git a/src/libretro/_typing.py b/src/libretro/_typing.py index 9ba67a5..55e34e2 100644 --- a/src/libretro/_typing.py +++ b/src/libretro/_typing.py @@ -1,7 +1,8 @@ import sys if sys.version_info >= (3, 12): - from collections.abc import Buffer, override + from collections.abc import Buffer + from typing import override else: from typing_extensions import Buffer, override