Skip to content

Commit 1ca4d71

Browse files
authored
Prepare release 0.3.0 (#27)
1 parent e9ac17b commit 1ca4d71

File tree

2 files changed

+8
-1
lines changed

2 files changed

+8
-1
lines changed

HISTORY.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## v0.3.0 (2025-02-24)
2+
3+
- Handle bare `ClassVar` type qualifiers, rename `INFERRED` sentinel by @Viicos in [#26](https://github.com/pydantic/typing-inspection/pull/26)
4+
While currently not explicitly allowed by the typing specification, `ClassVar` is allowed as a bare type qualifier.
5+
Unlike `Final`, the actual type doesn't have to be inferred from the assignment (e.g. one can use `Any`).
6+
For this reason, the `INFERRED` sentinel was renamed to `UNKNOWN`.
7+
18
## v0.2.0 (2025-02-23)
29

310
- Add `typing_objects.is_deprecated()` by @Viicos in [#24](https://github.com/pydantic/typing-inspection/pull/24)

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = 'hatchling.build'
44

55
[project]
66
name = 'typing-inspection'
7-
version = '0.2.0'
7+
version = '0.3.0'
88
description = 'Runtime typing introspection tools'
99
authors = [
1010
{name = 'Victorien Plot', email = '[email protected]'},

0 commit comments

Comments
 (0)