File tree Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Expand file tree Collapse file tree 1 file changed +22
-1
lines changed Original file line number Diff line number Diff line change 1212RootModule = ' ClassExplorer.psm1'
1313
1414# Version number of this module.
15- ModuleVersion = ' 2.1 .0'
15+ ModuleVersion = ' 2.2 .0'
1616
1717# Supported PSEditions
1818CompatiblePSEditions = ' Desktop' , ' Core'
@@ -78,6 +78,27 @@ PrivateData = @{
7878
7979 # ReleaseNotes of this module
8080 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+
81102## 2.1.0
82103
83104- Add signature keywords `abstract` and `concrete`
You can’t perform that action at this time.
0 commit comments