We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0539e80 commit f7e9e5dCopy full SHA for f7e9e5d
docs/changelog.md
@@ -1,7 +1,13 @@
1
# Changelog
2
3
-## Unreleased
+## Version 0.9.0 (January 16, 2023)
4
5
+Release highlights:
6
+- Support for PEP 702 (`@typing.deprecated`) (#578)
7
+- Add experimental `@has_extra_keys` decorator for `TypedDict` types
8
+- Support more Python 3.11 features (`except*` and `get_overloads`)
9
+
10
+Full changelog:
11
- Support `typing_extensions.get_overloads` and `typing.get_overloads` (#589)
12
- Support `in` on objects with only `__iter__` (#588)
13
- Do not call `.mro()` method on non-types (#587)
setup.py
@@ -2,7 +2,7 @@
from setuptools import setup
-version = "0.8.0"
+version = "0.9.0"
package_data = ["test.toml", "stubs/*/*.pyi"]
0 commit comments