File tree 1 file changed +22
-1
lines changed 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 12
12
RootModule = ' ClassExplorer.psm1'
13
13
14
14
# Version number of this module.
15
- ModuleVersion = ' 2.1 .0'
15
+ ModuleVersion = ' 2.2 .0'
16
16
17
17
# Supported PSEditions
18
18
CompatiblePSEditions = ' Desktop' , ' Core'
@@ -78,6 +78,27 @@ PrivateData = @{
78
78
79
79
# ReleaseNotes of this module
80
80
ReleaseNotes = @'
81
+ ## 2.2.0
82
+
83
+ ### Add `-RecurseNestedType` parameter
84
+
85
+ A lot of queries were a little harder with automatically recursing nested types.
86
+ So you could do something like:
87
+
88
+ ```powershell
89
+ Find-Type -Not -Base delegate | Find-Member -Not -Virtual | Find-Member Invoke
90
+ ```
91
+
92
+ And end up with a bunch of members from nested delegates. This also lets you
93
+ filter nested types easier. Basically we are just actually treating nested types
94
+ like other members unless you specifically request otherwise.
95
+
96
+ ### Other
97
+
98
+ * Filter sealed and abstract methods from virtual
99
+ * Fix filters applying incorrectly with `-Not` or when piped
100
+ * Add some extra parameter aliases
101
+
81
102
## 2.1.0
82
103
83
104
- Add signature keywords `abstract` and `concrete`
You can’t perform that action at this time.
0 commit comments