Skip to content

Commit dfb7b35

Browse files
committed
Release 0.1.8
1 parent adb3cc9 commit dfb7b35

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1010
> breaking changes may be introduced
1111
> at any time without warning.
1212
13+
## [0.1.8] - 2024-06-05
14+
15+
### Fixed
16+
17+
- Fixed an incorrect `import` shim in `_typing.py`,
18+
resulting in the library failing to import on Python 3.12.
19+
1320
## [0.1.7] - 2024-06-05
1421

1522
### Changed

src/libretro/_typing.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,8 @@
11
import sys
22

33
if sys.version_info >= (3, 12):
4-
from collections.abc import Buffer, override
4+
from collections.abc import Buffer
5+
from typing import override
56
else:
67
from typing_extensions import Buffer, override
78

0 commit comments

Comments
 (0)