|
1 | 1 | # Changelog |
2 | 2 |
|
3 | 3 | ## [Unreleased] |
| 4 | + |
| 5 | +## [[0.3.2]] - 2023-01-20 |
| 6 | + |
4 | 7 | ### Added |
5 | 8 | - Support for 2023.1 |
6 | 9 |
|
|
9 | 12 | - `set[]` type hint were causing exceptions when declared explicitly [[#31](https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/pull/31)] |
10 | 13 |
|
11 | 14 | ## [0.3.1] - 2022-10-02 |
| 15 | + |
12 | 16 | ### Fixed |
13 | 17 | - `TypedDict` subclasses being displayed as a regular dict in type hints |
14 | 18 | - Several bugs around `async` functions with type hints |
15 | 19 | - Other minor type hints corrections |
16 | 20 |
|
17 | 21 | ## [0.3.0] - 2022-09-25 |
| 22 | + |
18 | 23 | ### Added |
19 | 24 | - Type hints now support `async` functions [[#15](https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/pull/15)] |
20 | 25 | - Made type hints clickable, `Ctrl+LMB` to open the object reference [[#17](https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/pull/17)] |
|
27 | 32 | - Display of unnecessary type hints [[#16](https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/pull/16)] |
28 | 33 |
|
29 | 34 | ## [0.2.1] - 2022-09-23 |
| 35 | + |
30 | 36 | ### Added |
31 | 37 | - Support for 2022.3 |
32 | 38 | - More Python syntax covered with parameter hints |
|
38 | 44 | - Star (*) and Slash (/) parameters were breaking the hints order |
39 | 45 |
|
40 | 46 | ## [0.2.0] - 2022-07-29 |
| 47 | + |
41 | 48 | ### Added |
42 | 49 | - Detail plugin settings that let you disable parameter hints selectively |
43 | 50 | - Introduce new inlay hints - optional type annotations for variables and functions return types [[#6](https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/pull/6)] |
|
46 | 53 | - Drop support for build 212 and below due to changes in the plugin |
47 | 54 |
|
48 | 55 | ## [0.1.4] - 2022-07-20 |
| 56 | + |
49 | 57 | ### Changed |
50 | 58 | - Lower minimal build requirement to 2021.2 |
51 | 59 |
|
52 | 60 | ### Fixed |
53 | 61 | - Hints not showing when there's one positional parameter with `**kwargs` |
54 | 62 |
|
55 | 63 | ## [0.1.3] - 2022-07-19 |
| 64 | + |
56 | 65 | ### Changed |
57 | 66 | - Hide the hints that are 1 character long |
58 | 67 | - Don't show hints in call expressions that take a single parameter (except for `*args`) |
|
63 | 72 | - Arguments with the same name as the parameter, but in a different case, were still displayed |
64 | 73 |
|
65 | 74 | ## [0.1.2] - 2022-07-18 |
| 75 | + |
66 | 76 | ### Fixed |
67 | 77 | - `**kwargs` parameter being shown in certain situations |
68 | 78 | - Class hints based on their attributes were shown incorrectly |
69 | 79 | - Fix hints display for calls with unpacking |
70 | 80 |
|
71 | 81 | ## [0.1.1] - 2022-07-17 |
| 82 | + |
72 | 83 | ### Fixed |
73 | 84 | - Wrong hints behavior with some classes, related to the `__init__` inheritance logic |
74 | 85 | - Wrong hint ordering when a positional argument is passed after keyword arguments |
75 | 86 | - Messed up parameter ordering when unpacking is in the call expression |
76 | 87 |
|
77 | 88 | ## [0.1.0] - 2022-07-15 |
| 89 | + |
78 | 90 | ### Added |
79 | | -- Initial plugin release |
| 91 | +- Initial plugin release |
| 92 | + |
| 93 | +[Unreleased]: https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/compare/v0.3.2...HEAD |
| 94 | +[0.3.2]: https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/compare/v0.3.1...v0.3.2 |
| 95 | +[0.3.1]: https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/compare/v0.3.0...v0.3.1 |
| 96 | +[0.3.0]: https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/compare/v0.2.1...v0.3.0 |
| 97 | +[0.2.1]: https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/compare/v0.2.0...v0.2.1 |
| 98 | +[0.2.0]: https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/compare/v0.1.4...v0.2.0 |
| 99 | +[0.1.4]: https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/compare/v0.1.3...v0.1.4 |
| 100 | +[0.1.3]: https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/compare/v0.1.2...v0.1.3 |
| 101 | +[0.1.2]: https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/compare/v0.1.1...v0.1.2 |
| 102 | +[0.1.1]: https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/compare/v0.1.0...v0.1.1 |
| 103 | +[0.1.0]: https://github.com/WhiteMemory99/Intellij-Python-Inlay-Params/commits/v0.1.0 |
0 commit comments