Skip to content

Commit 72e5078

Browse files
author
James Brundage
committed
Updating Module Version [0.1.3] and CHANGELOG. Fixes #219
1 parent e02b27e commit 72e5078

File tree

3 files changed

+53
-3
lines changed

3 files changed

+53
-3
lines changed

CHANGELOG.md

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,27 @@
1+
## 0.1.3:
2+
* New Protocols: UDP (Fixes #208)
3+
* New Inline Language Support:
4+
* ADA (Fixes #207)
5+
* Basic/VB/VBScript (Fixes #206)
6+
* R (Fixes #204)
7+
* SQL (Fixes #200)
8+
* TCL/TK (Fixes #205)
9+
* Keyword improvements:
10+
* new keyword now allows static members as constructor arguments (Fixes #214)
11+
* until keyword uses do{} until (Fixes #217)
12+
* General Improvements:
13+
* Core Transpiler now respects .Rank (Fixes #210 #211)
14+
* New-PipeScript:
15+
* Fixing -Link behavior (Fixes #201)
16+
* Trimming ends of examples (Fixes #202)
17+
* Plurally aliasing -Examples and -Links (Fixes #203)
18+
* Search-PipeScript:
19+
* Now supports plural aliases for -RegularExpression (Fixes #219)
20+
* ParameterTypeConstraint now ignores [ordered] (Fixes #190)
21+
* Extended Type System Improvements:
22+
* [ScriptBlock].Transpile() now throws (Fixes #212)
23+
---
24+
125
## 0.1.2:
226
* New Inline Language support
327
* Batch support (Fixes #198)

PipeScript.psd1

Lines changed: 25 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
@{
2-
ModuleVersion = '0.1.2'
2+
ModuleVersion = '0.1.3'
33
Description = 'An Extensible Transpiler for PowerShell (and anything else)'
44
RootModule = 'PipeScript.psm1'
55
PowerShellVersion = '4.0'
@@ -19,6 +19,30 @@
1919
BuildModule = @('EZOut','Piecemeal','PipeScript','HelpOut', 'PSDevOps')
2020
Tags = 'PipeScript','PowerShell', 'Transpilation', 'Compiler'
2121
ReleaseNotes = @'
22+
## 0.1.3:
23+
* New Protocols: UDP (Fixes #208)
24+
* New Inline Language Support:
25+
* ADA (Fixes #207)
26+
* Basic/VB/VBScript (Fixes #206)
27+
* R (Fixes #204)
28+
* SQL (Fixes #200)
29+
* TCL/TK (Fixes #205)
30+
* Keyword improvements:
31+
* new keyword now allows static members as constructor arguments (Fixes #214)
32+
* until keyword uses do{} until (Fixes #217)
33+
* General Improvements:
34+
* Core Transpiler now respects .Rank (Fixes #210 #211)
35+
* New-PipeScript:
36+
* Fixing -Link behavior (Fixes #201)
37+
* Trimming ends of examples (Fixes #202)
38+
* Plurally aliasing -Examples and -Links (Fixes #203)
39+
* Search-PipeScript:
40+
* Now supports plural aliases for -RegularExpression (Fixes #219)
41+
* ParameterTypeConstraint now ignores [ordered] (Fixes #190)
42+
* Extended Type System Improvements:
43+
* [ScriptBlock].Transpile() now throws (Fixes #212)
44+
---
45+
2246
## 0.1.2:
2347
* New Inline Language support
2448
* Batch support (Fixes #198)

Search-PipeScript.ps1.ps1

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ function Search-PipeScript
44
.Synopsis
55
Searches PowerShell and PipeScript ScriptBlocks
66
.Description
7-
Searches PowerShell and PipeScript ScriptBlocks, files, and text
7+
Searches the contents of PowerShell and PipeScript ScriptBlocks, files, and text.
8+
9+
Search-PipeScript can search using an -ASTCondition -or -ASTType or with a -RegularExpression.
810
.Example
911
Search-PipeScript -ScriptBlock {
1012
$a
@@ -38,7 +40,7 @@ function Search-PipeScript
3840

3941
# One or more regular expressions to match.
4042
[Parameter(ValueFromPipelineByPropertyName)]
41-
[Alias('RegEx')]
43+
[Alias('RegEx','Regexes','RegularExpressions')]
4244
[ValidateTypes(TypeName={[string], [Regex], [string[]], [regex[]]})]
4345
$RegularExpression,
4446

0 commit comments

Comments
 (0)