We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b75cdab commit 3f962a3Copy full SHA for 3f962a3
Readme.md
@@ -19,7 +19,7 @@ game specific things:
19
20
# Changelog
21
22
-### Upcoming
+### v1.6
23
- Changed default type of `HookType` generic type hint to any, so that by default pre and post hooks
24
can be combined under the same type. As an example, previously if you passed an explicit hook list
25
to `build_mod`, the type hinting would only accept a list where all hooks were of the same type.
__init__.py
@@ -8,7 +8,7 @@
8
from .dot_sdkmod import open_in_mod_dir
9
10
# Need to define a few things first to avoid circular imports
11
-__version_info__: tuple[int, int] = (1, 5)
+__version_info__: tuple[int, int] = (1, 6)
12
__version__: str = f"{__version_info__[0]}.{__version_info__[1]}"
13
__author__: str = "bl-sdk"
14
0 commit comments