|
1 | 1 | @{ |
2 | | - ModuleVersion = '0.7.7' |
| 2 | + ModuleVersion = '0.7.8' |
3 | 3 | RootModule = 'Irregular.psm1' |
4 | 4 | Description = 'Regular Expressions made Strangely Simple' |
5 | 5 | FormatsToProcess = 'Irregular.format.ps1xml' |
6 | 6 | TypesToProcess = 'Irregular.types.ps1xml' |
7 | 7 | Guid = '39eb966d-7437-4e2c-abae-a496e933fb23' |
8 | 8 | Author = 'James Brundage' |
9 | | - Copyright = '2019-2022 Start-Automating' |
| 9 | + Copyright = '2019-2023 Start-Automating' |
10 | 10 | PrivateData = @{ |
11 | 11 | PSData = @{ |
12 | 12 | Tags = 'RegularExpressions', 'RegEx', 'Irregular', 'PatternMatching', 'PipeScript' |
13 | 13 | ProjectURI = 'https://github.com/StartAutomating/Irregular' |
14 | 14 | LicenseURI = 'https://github.com/StartAutomating/Irregular/blob/master/LICENSE' |
15 | 15 | IconURI = 'https://github.com/StartAutomating/Irregular/blob/master/Assets/Irregular_600_Square.png' |
16 | 16 | ReleaseNotes = @' |
| 17 | +## 0.7.8: |
| 18 | +
|
| 19 | +* Adding Compress-Regex (Fixes #178) |
| 20 | +* New Regexes: |
| 21 | + * ?<YAML_Value> (Fixes #192) |
| 22 | + * ?<YAML_Key> (Fixes #191) |
| 23 | + * ?<Degrees> (Fixes #185) |
| 24 | + * ?<Git_Commit> (Fixes #193) |
| 25 | + * ?<RegularExpression_GroupName> ( #195 ) |
| 26 | + * ?<PowerShell_Hashtable> ( Fixes #194 ) |
| 27 | + * ?<PowerShell_Requires>: Allowing open ended requirement (Fixes #182) |
| 28 | +Renaming ANSI Regexes to Console (Fixes #188) |
| 29 | +
|
| 30 | +--- |
| 31 | +
|
17 | 32 | ## 0.7.7: |
18 | 33 |
|
19 | 34 | New Patterns: |
@@ -211,6 +226,19 @@ Hat Tips: @JayKul, @LaurentDardenne |
211 | 226 | Additional Changes in [ChangeLog](CHANGELOG.md) |
212 | 227 | '@ |
213 | 228 | } |
| 229 | + ScriptTypes = @{ |
| 230 | + RegExGenerator = @{ |
| 231 | + Pattern = '\.regex\.ps1$' |
| 232 | + } |
| 233 | + RegExSource = @{ |
| 234 | + Pattern = '\.regex\.source\.ps1$' |
| 235 | + } |
| 236 | + } |
| 237 | + ApplicationTypes = @{ |
| 238 | + RegExFile = @{ |
| 239 | + Pattern ='\.regex\.txt' |
| 240 | + } |
| 241 | + } |
214 | 242 | } |
215 | 243 | } |
216 | 244 |
|
0 commit comments