Skip to content

Commit cc01dcb

Browse files
Update manifest and release notes
1 parent 96093e8 commit cc01dcb

File tree

1 file changed

+22
-1
lines changed

1 file changed

+22
-1
lines changed

module/ClassExplorer.psd1

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
RootModule = 'ClassExplorer.psm1'
1313

1414
# Version number of this module.
15-
ModuleVersion = '2.1.0'
15+
ModuleVersion = '2.2.0'
1616

1717
# Supported PSEditions
1818
CompatiblePSEditions = '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`

0 commit comments

Comments
 (0)