Skip to content

Commit 4a9ccfa

Browse files
author
James Brundage
committed
Updating Module Version [0.7.8] and CHANGELOG
1 parent dcd7661 commit 4a9ccfa

2 files changed

Lines changed: 46 additions & 3 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,19 @@
1-
## 0.7.7:
1+
## 0.7.8:
2+
3+
* Adding Compress-Regex (Fixes #178)
4+
* New Regexes:
5+
* ?<YAML_Value> (Fixes #192)
6+
* ?<YAML_Key> (Fixes #191)
7+
* ?<Degrees> (Fixes #185)
8+
* ?<Git_Commit> (Fixes #193)
9+
* ?<RegularExpression_GroupName> ( #195 )
10+
* ?<PowerShell_Hashtable> ( Fixes #194 )
11+
* ?<PowerShell_Requires>: Allowing open ended requirement (Fixes #182)
12+
Renaming ANSI Regexes to Console (Fixes #188)
13+
14+
---
15+
16+
## 0.7.7:
217

318
New Patterns:
419

Irregular.psd1

Lines changed: 30 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,34 @@
11
@{
2-
ModuleVersion = '0.7.7'
2+
ModuleVersion = '0.7.8'
33
RootModule = 'Irregular.psm1'
44
Description = 'Regular Expressions made Strangely Simple'
55
FormatsToProcess = 'Irregular.format.ps1xml'
66
TypesToProcess = 'Irregular.types.ps1xml'
77
Guid = '39eb966d-7437-4e2c-abae-a496e933fb23'
88
Author = 'James Brundage'
9-
Copyright = '2019-2022 Start-Automating'
9+
Copyright = '2019-2023 Start-Automating'
1010
PrivateData = @{
1111
PSData = @{
1212
Tags = 'RegularExpressions', 'RegEx', 'Irregular', 'PatternMatching', 'PipeScript'
1313
ProjectURI = 'https://github.com/StartAutomating/Irregular'
1414
LicenseURI = 'https://github.com/StartAutomating/Irregular/blob/master/LICENSE'
1515
IconURI = 'https://github.com/StartAutomating/Irregular/blob/master/Assets/Irregular_600_Square.png'
1616
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+
1732
## 0.7.7:
1833
1934
New Patterns:
@@ -211,6 +226,19 @@ Hat Tips: @JayKul, @LaurentDardenne
211226
Additional Changes in [ChangeLog](CHANGELOG.md)
212227
'@
213228
}
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+
}
214242
}
215243
}
216244

0 commit comments

Comments
 (0)